summaryrefslogtreecommitdiffstats
path: root/drivers/net/bmac.c
diff options
context:
space:
mode:
authorAl Viro2005-09-30 05:19:43 +0200
committerLinus Torvalds2005-09-30 17:42:24 +0200
commit66df3bbf0701b7408a1067c4b819aceee2686bba (patch)
tree4823f28eaad12058917d2ef948175b6afd7b1c67 /drivers/net/bmac.c
parent[PATCH] bogus BUILD_BUG_ON() in bpa_iommu (diff)
downloadkernel-qcow2-linux-66df3bbf0701b7408a1067c4b819aceee2686bba.tar.gz
kernel-qcow2-linux-66df3bbf0701b7408a1067c4b819aceee2686bba.tar.xz
kernel-qcow2-linux-66df3bbf0701b7408a1067c4b819aceee2686bba.zip
[PATCH] volatile unsigned short f(...) doesn't make sense
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/net/bmac.c')
-rw-r--r--drivers/net/bmac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/bmac.c b/drivers/net/bmac.c
index 8dc657fc8afb..60dba4a1ca5c 100644
--- a/drivers/net/bmac.c
+++ b/drivers/net/bmac.c
@@ -218,7 +218,7 @@ void bmwrite(struct net_device *dev, unsigned long reg_offset, unsigned data )
static inline
-volatile unsigned short bmread(struct net_device *dev, unsigned long reg_offset )
+unsigned short bmread(struct net_device *dev, unsigned long reg_offset )
{
return in_le16((void __iomem *)dev->base_addr + reg_offset);
}