aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/net/ethernet/broadcom/bgmac.h
diff options
context:
space:
mode:
authorFlorian Fainelli <f.fainelli@gmail.com>2018-04-01 10:26:29 -0700
committerDavid S. Miller <davem@davemloft.net>2018-04-01 22:20:48 -0400
commit16a1c0646e55c3345bce8e4edfc06ad119d27c04 (patch)
tree28fde750f62dbd18fe57133e6138cc7328255426 /drivers/net/ethernet/broadcom/bgmac.h
parentroute: check sysctl_fib_multipath_use_neigh earlier than hash (diff)
downloadwireguard-linux-16a1c0646e55c3345bce8e4edfc06ad119d27c04.tar.xz
wireguard-linux-16a1c0646e55c3345bce8e4edfc06ad119d27c04.zip
net: bgmac: Correctly annotate register space
All the members: base, idm_base and nicpm_base should be annotated with __iomem since they are pointers to register space. This fixes a bunch of sparse reported warnings. Fixes: f6a95a24957a ("net: ethernet: bgmac: Add platform device support") Fixes: dd5c5d037f5e ("net: ethernet: bgmac: add NS2 support") Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/broadcom/bgmac.h')
-rw-r--r--drivers/net/ethernet/broadcom/bgmac.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/ethernet/broadcom/bgmac.h b/drivers/net/ethernet/broadcom/bgmac.h
index 4040d846da8e..40d02fec2747 100644
--- a/drivers/net/ethernet/broadcom/bgmac.h
+++ b/drivers/net/ethernet/broadcom/bgmac.h
@@ -479,9 +479,9 @@ struct bgmac_rx_header {
struct bgmac {
union {
struct {
- void *base;
- void *idm_base;
- void *nicpm_base;
+ void __iomem *base;
+ void __iomem *idm_base;
+ void __iomem *nicpm_base;
} plat;
struct {
struct bcma_device *core;