diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2016-09-25 18:43:02 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-09-26 06:47:31 +0300 |
commit | b3f5bf64d8dbbb08685b91ee4576d2e82e7bd60f (patch) | |
tree | 1a8750d2f40904e7f2d720adae53b586450e7d49 /drivers/net/dsa | |
parent | e6053dd56a022d2ef754e46b4a9836c65f1dc434 (diff) | |
download | linux-b3f5bf64d8dbbb08685b91ee4576d2e82e7bd60f.tar.xz |
net: dsa: mv88e6xxx: fix non static symbol warnings
Fixes the following sparse warnings:
drivers/net/dsa/mv88e6xxx/chip.c:219:5: warning:
symbol 'mv88e6xxx_port_read' was not declared. Should it be static?
drivers/net/dsa/mv88e6xxx/chip.c:227:5: warning:
symbol 'mv88e6xxx_port_write' was not declared. Should it be static?
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Reviewed-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa')
-rw-r--r-- | drivers/net/dsa/mv88e6xxx/chip.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/dsa/mv88e6xxx/chip.c b/drivers/net/dsa/mv88e6xxx/chip.c index 122876cb926c..b2c25daef294 100644 --- a/drivers/net/dsa/mv88e6xxx/chip.c +++ b/drivers/net/dsa/mv88e6xxx/chip.c @@ -216,16 +216,16 @@ int mv88e6xxx_write(struct mv88e6xxx_chip *chip, int addr, int reg, u16 val) return 0; } -int mv88e6xxx_port_read(struct mv88e6xxx_chip *chip, int port, int reg, - u16 *val) +static int mv88e6xxx_port_read(struct mv88e6xxx_chip *chip, int port, int reg, + u16 *val) { int addr = chip->info->port_base_addr + port; return mv88e6xxx_read(chip, addr, reg, val); } -int mv88e6xxx_port_write(struct mv88e6xxx_chip *chip, int port, int reg, - u16 val) +static int mv88e6xxx_port_write(struct mv88e6xxx_chip *chip, int port, int reg, + u16 val) { int addr = chip->info->port_base_addr + port; |