diff options
author | Ahmed S. Darwish <darwish.07@gmail.com> | 2007-03-06 14:08:28 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-04-28 11:00:58 -0400 |
commit | 1c8816c6fe375ed3a1e342fcf7f403cd4f0d5041 (patch) | |
tree | abc26fd84ea7d05fa2d30e3ae3cf653cce298248 /drivers/net/ixgb | |
parent | 363dc36733b06a94d3dce7c43b56c888f6d185de (diff) |
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>
Diffstat (limited to 'drivers/net/ixgb')
-rw-r--r-- | drivers/net/ixgb/ixgb_param.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/ixgb/ixgb_param.c b/drivers/net/ixgb/ixgb_param.c index b27442a121f2..c38ce739e3f7 100644 --- a/drivers/net/ixgb/ixgb_param.c +++ b/drivers/net/ixgb/ixgb_param.c | |||
@@ -245,8 +245,6 @@ ixgb_validate_option(int *value, struct ixgb_option *opt) | |||
245 | return -1; | 245 | return -1; |
246 | } | 246 | } |
247 | 247 | ||
248 | #define LIST_LEN(l) (sizeof(l) / sizeof(l[0])) | ||
249 | |||
250 | /** | 248 | /** |
251 | * ixgb_check_options - Range Checking for Command Line Parameters | 249 | * ixgb_check_options - Range Checking for Command Line Parameters |
252 | * @adapter: board private structure | 250 | * @adapter: board private structure |
@@ -335,7 +333,7 @@ ixgb_check_options(struct ixgb_adapter *adapter) | |||
335 | .name = "Flow Control", | 333 | .name = "Flow Control", |
336 | .err = "reading default settings from EEPROM", | 334 | .err = "reading default settings from EEPROM", |
337 | .def = ixgb_fc_tx_pause, | 335 | .def = ixgb_fc_tx_pause, |
338 | .arg = { .l = { .nr = LIST_LEN(fc_list), | 336 | .arg = { .l = { .nr = ARRAY_SIZE(fc_list), |
339 | .p = fc_list }} | 337 | .p = fc_list }} |
340 | }; | 338 | }; |
341 | 339 | ||