ixgb: Use ARRAY_SIZE macro when appropriate.
Signed-off-by: Ahmed S. Darwish <darwish.07@gmail.com> Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
363dc36733
commit
1c8816c6fe
|
@ -245,8 +245,6 @@ ixgb_validate_option(int *value, struct ixgb_option *opt)
|
|||
return -1;
|
||||
}
|
||||
|
||||
#define LIST_LEN(l) (sizeof(l) / sizeof(l[0]))
|
||||
|
||||
/**
|
||||
* ixgb_check_options - Range Checking for Command Line Parameters
|
||||
* @adapter: board private structure
|
||||
|
@ -335,7 +333,7 @@ ixgb_check_options(struct ixgb_adapter *adapter)
|
|||
.name = "Flow Control",
|
||||
.err = "reading default settings from EEPROM",
|
||||
.def = ixgb_fc_tx_pause,
|
||||
.arg = { .l = { .nr = LIST_LEN(fc_list),
|
||||
.arg = { .l = { .nr = ARRAY_SIZE(fc_list),
|
||||
.p = fc_list }}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue