diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2017-05-08 17:14:19 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-05-08 15:15:02 -0400 |
commit | 05c5d0041972d3f3c6d881e94aa351f89a62eb2a (patch) | |
tree | 3665d7b804140a816b58e349a6ab4252efb5dd1a /drivers/net | |
parent | 8ed508fd4b84a38db63ddeee8ab6905f06cfa589 (diff) | |
download | linux-05c5d0041972d3f3c6d881e94aa351f89a62eb2a.tar.bz2 |
stmmac: pci: set default number of rx and tx queues
The commit 26d6851fd24e
("net: stmmac: set default number of rx and tx queues in stmmac_pci")
missed Intel Quark configuration. Append it here.
Fixes: 26d6851fd24e ("net: stmmac: set default number of rx and tx queues in stmmac_pci")
Cc: Joao Pinto <Joao.Pinto@synopsys.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Joao Pinto <jpinto@synopsys.com>
Acked-by: Giuseppe Cavallaro <peppe.cavallaro@st.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c index 39be96779145..ae3e836f9bb6 100644 --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c @@ -145,6 +145,10 @@ static int quark_default_data(struct plat_stmmacenet_data *plat, /* Set the maxmtu to a default of JUMBO_LEN */ plat->maxmtu = JUMBO_LEN; + /* Set default number of RX and TX queues to use */ + plat->tx_queues_to_use = 1; + plat->rx_queues_to_use = 1; + return 0; } |