diff options
author | Cheng Han <hancheng2009@gmail.com> | 2019-05-09 05:13:41 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-05-09 18:20:32 +0200 |
commit | 68a5cde9f02e690206e41c2d5aba88461a8829f1 (patch) | |
tree | 1bc2b685c55b4613fc5464dd2c85dcada0a65ded /drivers/net | |
parent | ptp_qoriq: fix NULL access if ptp dt node missing (diff) | |
download | linux-68a5cde9f02e690206e41c2d5aba88461a8829f1.tar.xz linux-68a5cde9f02e690206e41c2d5aba88461a8829f1.zip |
dwmac4_prog_mtl_tx_algorithms() missing write operation
net: ethernet: stmmac: dwmac4_prog_mtl_tx_algorithms() missing write operation
The value of MTL_OPERATION_MODE is not written back
Signed-off-by: Cheng Han <hancheng2009@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c b/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c index 7e5d5db0d516..b4bb5629de38 100644 --- a/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c @@ -192,6 +192,8 @@ static void dwmac4_prog_mtl_tx_algorithms(struct mac_device_info *hw, default: break; } + + writel(value, ioaddr + MTL_OPERATION_MODE); } static void dwmac4_set_mtl_tx_queue_weight(struct mac_device_info *hw, |