[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>

authored by Al Viro and committed by Linus Torvalds 66df3bbf c215a16a

+1 -1
+1 -1
drivers/net/bmac.c
··· 218 219 220 static inline 221 - volatile unsigned short bmread(struct net_device *dev, unsigned long reg_offset ) 222 { 223 return in_le16((void __iomem *)dev->base_addr + reg_offset); 224 }
··· 218 219 220 static inline 221 + unsigned short bmread(struct net_device *dev, unsigned long reg_offset ) 222 { 223 return in_le16((void __iomem *)dev->base_addr + reg_offset); 224 }