aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/dsa
diff options
context:
space:
mode:
authorFlorian Fainelli <f.fainelli@gmail.com>2018-09-10 16:47:07 -0700
committerDavid S. Miller <davem@davemloft.net>2018-09-12 00:06:55 -0700
commit1fb0d4e8ddb1b64d6efbd01e44f8994644521419 (patch)
treefcb9a75e5ebf2804f4fec6d48e7159600b3b737e /drivers/net/dsa
parentnet/tls: Fixed return value when tls_complete_pending_work() fails (diff)
downloadlinux-dev-1fb0d4e8ddb1b64d6efbd01e44f8994644521419.tar.xz
linux-dev-1fb0d4e8ddb1b64d6efbd01e44f8994644521419.zip
net: dsa: b53: Only call b53_port_event() for SGMII ports
Built-in PHY ports are still being polled, avoid generating spurious and duplicate events which the PHY library resolves through polling anyways. Fixes: 0e01491de646 ("net: dsa: b53: Add SerDes support") Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa')
-rw-r--r--drivers/net/dsa/b53/b53_srab.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/dsa/b53/b53_srab.c b/drivers/net/dsa/b53/b53_srab.c
index b0ed81876bae..321052732799 100644
--- a/drivers/net/dsa/b53/b53_srab.c
+++ b/drivers/net/dsa/b53/b53_srab.c
@@ -373,7 +373,8 @@ static irqreturn_t b53_srab_port_thread(int irq, void *dev_id)
struct b53_srab_port_priv *port = dev_id;
struct b53_device *dev = port->dev;
- b53_port_event(dev->ds, port->num);
+ if (port->mode == PHY_INTERFACE_MODE_SGMII)
+ b53_port_event(dev->ds, port->num);
return IRQ_HANDLED;
}