aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/dsa/bcm_sf2.c
diff options
context:
space:
mode:
authorWei Yongjun <weiyongjun1@huawei.com>2016-09-15 02:24:13 +0000
committerDavid S. Miller <davem@davemloft.net>2016-09-16 04:25:50 -0400
commit0e26e5bd518f608ee2023b29429ecd4cd8b6969d (patch)
tree2e17f93b7ff5fb2354c80319bf2059a8c97c9cea /drivers/net/dsa/bcm_sf2.c
parenttcp: fix a stale ooo_last_skb after a replace (diff)
downloadlinux-dev-0e26e5bd518f608ee2023b29429ecd4cd8b6969d.tar.xz
linux-dev-0e26e5bd518f608ee2023b29429ecd4cd8b6969d.zip
net: dsa: bcm_sf2: Fix non static symbol warning
Fixes the following sparse warning: drivers/net/dsa/bcm_sf2.c:963:19: warning: symbol 'bcm_sf2_io_ops' was not declared. Should it be static? Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Acked-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa/bcm_sf2.c')
-rw-r--r--drivers/net/dsa/bcm_sf2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/dsa/bcm_sf2.c b/drivers/net/dsa/bcm_sf2.c
index 5bf4f3452676..e218887f18b7 100644
--- a/drivers/net/dsa/bcm_sf2.c
+++ b/drivers/net/dsa/bcm_sf2.c
@@ -960,7 +960,7 @@ static int bcm_sf2_core_write64(struct b53_device *dev, u8 page, u8 reg,
return 0;
}
-struct b53_io_ops bcm_sf2_io_ops = {
+static struct b53_io_ops bcm_sf2_io_ops = {
.read8 = bcm_sf2_core_read8,
.read16 = bcm_sf2_core_read16,
.read32 = bcm_sf2_core_read32,