From: Wei Yongjun Date: Tue, 18 Oct 2016 15:53:37 +0000 (+0000) Subject: net: dsa: mv88e6xxx: fix non static symbol warning X-Git-Tag: v5.15~12359^2~441 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=aa0938c6d77d84d9ab72c5674c9624dddc345095;p=platform%2Fkernel%2Flinux-starfive.git net: dsa: mv88e6xxx: fix non static symbol warning Fixes the following sparse warning: drivers/net/dsa/mv88e6xxx/chip.c:2866:5: warning: symbol 'mv88e6xxx_g1_set_switch_mac' was not declared. Should it be static? Signed-off-by: Wei Yongjun Reviewed-by: Andrew Lunn Signed-off-by: David S. Miller --- diff --git a/drivers/net/dsa/mv88e6xxx/chip.c b/drivers/net/dsa/mv88e6xxx/chip.c index ac03297..157360f 100644 --- a/drivers/net/dsa/mv88e6xxx/chip.c +++ b/drivers/net/dsa/mv88e6xxx/chip.c @@ -2863,7 +2863,7 @@ static int mv88e6xxx_setup_port(struct mv88e6xxx_chip *chip, int port) return mv88e6xxx_port_write(chip, port, PORT_DEFAULT_VLAN, 0x0000); } -int mv88e6xxx_g1_set_switch_mac(struct mv88e6xxx_chip *chip, u8 *addr) +static int mv88e6xxx_g1_set_switch_mac(struct mv88e6xxx_chip *chip, u8 *addr) { int err;