Commit 4e4637b1 authored by Colin Ian King's avatar Colin Ian King Committed by David S. Miller

net: dsa: mv88e6xxx: fix broken if statement because of a stray semicolon

There is a stray semicolon in an if statement that will cause a dev_err
message to be printed unconditionally. Fix this by removing the stray
semicolon.

Addresses-Coverity: ("Stay semicolon")
Fixes: f0942e00 ("net: dsa: mv88e6xxx: Add support for port mirroring")
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 084346be
......@@ -5317,7 +5317,7 @@ static void mv88e6xxx_port_mirror_del(struct dsa_switch *ds, int port,
if (chip->info->ops->set_egress_port(chip,
direction,
dsa_upstream_port(ds,
port)));
port)))
dev_err(ds->dev, "failed to set egress port\n");
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment