aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgb/ixgb_param.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/ixgb/ixgb_param.c')
-rw-r--r--drivers/net/ixgb/ixgb_param.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/net/ixgb/ixgb_param.c b/drivers/net/ixgb/ixgb_param.c
index b27442a121f2..5d5ddabf4360 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
@@ -284,7 +282,7 @@ ixgb_check_options(struct ixgb_adapter *adapter)
284 } else { 282 } else {
285 tx_ring->count = opt.def; 283 tx_ring->count = opt.def;
286 } 284 }
287 IXGB_ROUNDUP(tx_ring->count, IXGB_REQ_TX_DESCRIPTOR_MULTIPLE); 285 tx_ring->count = ALIGN(tx_ring->count, IXGB_REQ_TX_DESCRIPTOR_MULTIPLE);
288 } 286 }
289 { /* Receive Descriptor Count */ 287 { /* Receive Descriptor Count */
290 struct ixgb_option opt = { 288 struct ixgb_option opt = {
@@ -303,7 +301,7 @@ ixgb_check_options(struct ixgb_adapter *adapter)
303 } else { 301 } else {
304 rx_ring->count = opt.def; 302 rx_ring->count = opt.def;
305 } 303 }
306 IXGB_ROUNDUP(rx_ring->count, IXGB_REQ_RX_DESCRIPTOR_MULTIPLE); 304 rx_ring->count = ALIGN(rx_ring->count, IXGB_REQ_RX_DESCRIPTOR_MULTIPLE);
307 } 305 }
308 { /* Receive Checksum Offload Enable */ 306 { /* Receive Checksum Offload Enable */
309 struct ixgb_option opt = { 307 struct ixgb_option opt = {
@@ -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