diff options
author | Thomas Falcon <tlfalcon@linux.vnet.ibm.com> | 2017-12-18 12:52:11 -0600 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-12-19 14:08:20 -0500 |
commit | d45cc3a43c43f867668bdd7ace12b1e6aa68bf46 (patch) | |
tree | 561b83034f66070d5e22980c0a6328eb988cbdb5 /drivers/net/ethernet/ibm/ibmvnic.c | |
parent | b8fa3bfb14e78dbfcfbd2fac1d81a0e666eb8f42 (diff) |
ibmvnic: Rename IBMVNIC_MAX_TX_QUEUES to IBMVNIC_MAX_QUEUES
This value denotes the maximum number of TX queues but is used
to allocate both RX and TX queues.
Signed-off-by: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/ibm/ibmvnic.c')
-rw-r--r-- | drivers/net/ethernet/ibm/ibmvnic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/ibm/ibmvnic.c b/drivers/net/ethernet/ibm/ibmvnic.c index 1dc4aef37d3a..df6d91116b65 100644 --- a/drivers/net/ethernet/ibm/ibmvnic.c +++ b/drivers/net/ethernet/ibm/ibmvnic.c @@ -4285,7 +4285,7 @@ static int ibmvnic_probe(struct vio_dev *dev, const struct vio_device_id *id) } netdev = alloc_etherdev_mq(sizeof(struct ibmvnic_adapter), - IBMVNIC_MAX_TX_QUEUES); + IBMVNIC_MAX_QUEUES); if (!netdev) return -ENOMEM; |