diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2017-05-08 17:14:21 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-05-08 22:15:02 +0300 |
commit | efcd24147fa03817485dab9ff9d5542a0f28684b (patch) | |
tree | 1de930b0e2b0ff12353ed3fd1009ec31acec2df4 /drivers/net/ethernet | |
parent | a1437e57af1c07ef01b921c4a1ab8efd5134b597 (diff) | |
download | linux-efcd24147fa03817485dab9ff9d5542a0f28684b.tar.xz |
stmmac: pci: RX queue routing configuration
The commit abe80fdc6ee6
("net: stmmac: RX queue routing configuration")
missed Intel Quark configuration. Append it here.
Fixes: abe80fdc6ee6 ("net: stmmac: RX queue routing configuration")
Cc: Joao Pinto <Joao.Pinto@synopsys.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Joao Pinto <jpinto@synopsys.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet')
-rw-r--r-- | drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c index c015a715a8ac..2456e0a945ef 100644 --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c @@ -153,6 +153,9 @@ static int quark_default_data(struct plat_stmmacenet_data *plat, plat->tx_queues_cfg[0].use_prio = false; plat->rx_queues_cfg[0].use_prio = false; + /* Disable RX queues routing by default */ + plat->rx_queues_cfg[0].pkt_route = 0x0; + return 0; } |