diff options
Diffstat (limited to 'drivers/net/igb/igb_main.c')
-rw-r--r-- | drivers/net/igb/igb_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/igb/igb_main.c b/drivers/net/igb/igb_main.c index 022794e579c7..b82b0fb2056c 100644 --- a/drivers/net/igb/igb_main.c +++ b/drivers/net/igb/igb_main.c | |||
@@ -1457,8 +1457,8 @@ static int __devinit igb_sw_init(struct igb_adapter *adapter) | |||
1457 | 1457 | ||
1458 | /* Number of supported queues. */ | 1458 | /* Number of supported queues. */ |
1459 | /* Having more queues than CPUs doesn't make sense. */ | 1459 | /* Having more queues than CPUs doesn't make sense. */ |
1460 | adapter->num_rx_queues = min((u32)IGB_MAX_RX_QUEUES, (u32)num_online_cpus()); | 1460 | adapter->num_rx_queues = min_t(u32, IGB_MAX_RX_QUEUES, num_online_cpus()); |
1461 | adapter->num_tx_queues = min(IGB_MAX_TX_QUEUES, num_online_cpus()); | 1461 | adapter->num_tx_queues = min_t(u32, IGB_MAX_TX_QUEUES, num_online_cpus()); |
1462 | 1462 | ||
1463 | /* This call may decrease the number of queues depending on | 1463 | /* This call may decrease the number of queues depending on |
1464 | * interrupt mode. */ | 1464 | * interrupt mode. */ |