aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Vokáč <vokac.m@gmail.com>2018-05-23 08:20:20 +0200
committerDavid S. Miller <davem@davemloft.net>2018-05-23 15:46:05 -0400
commiteee1fe64765c562d8bcaf95e5631a8ea2f760f34 (patch)
tree9d13eebb6e2648663ae712db974e4194fab303ec
parentnet: dsa: qca8k: Add support for QCA8334 switch (diff)
downloadlinux-dev-eee1fe64765c562d8bcaf95e5631a8ea2f760f34.tar.xz
linux-dev-eee1fe64765c562d8bcaf95e5631a8ea2f760f34.zip
net: dsa: qca8k: Enable RXMAC when bringing up a port
When a port is brought up/down do not enable/disable only the TXMAC but the RXMAC as well. This is essential for the CPU port to work. Fixes: 6b93fb46480a ("net-next: dsa: add new driver for qca8xxx family") Signed-off-by: Michal Vokáč <michal.vokac@ysoft.com> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/dsa/qca8k.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/dsa/qca8k.c b/drivers/net/dsa/qca8k.c
index eb7aceb20f8a..a32744e40baf 100644
--- a/drivers/net/dsa/qca8k.c
+++ b/drivers/net/dsa/qca8k.c
@@ -473,7 +473,7 @@ qca8k_set_pad_ctrl(struct qca8k_priv *priv, int port, int mode)
static void
qca8k_port_set_status(struct qca8k_priv *priv, int port, int enable)
{
- u32 mask = QCA8K_PORT_STATUS_TXMAC;
+ u32 mask = QCA8K_PORT_STATUS_TXMAC | QCA8K_PORT_STATUS_RXMAC;
/* Port 0 and 6 have no internal PHY */
if ((port > 0) && (port < 6))