aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-sparc64/mostek.h
diff options
context:
space:
mode:
authorAl Viro <viro@parcelfarce.linux.theplanet.co.uk>2005-04-24 15:28:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-24 15:28:36 -0400
commitef0299bf8e868c09bff13e6f3c4fc9b835f60471 (patch)
tree0b734b9d95cf5fe38a9a15a48e4900d28447502e /include/asm-sparc64/mostek.h
parentfdca124a1bcc7e624f6b887c6f26153f40ee43ee (diff)
[PATCH] mostek bogus sparse annotations fixed
void * __iomem foo is not a pointer to iomem - it's an iomem variable containing void *. A pile of such guys in arch/sparc64/kernel/time.c, drivers/sbus/char/rtc.c and include/asm-sparc64/mostek.h turned into intended void __iomem *. Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-sparc64/mostek.h')
-rw-r--r--include/asm-sparc64/mostek.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-sparc64/mostek.h b/include/asm-sparc64/mostek.h
index 1f9b1356a48e..09b5aba6678a 100644
--- a/include/asm-sparc64/mostek.h
+++ b/include/asm-sparc64/mostek.h
@@ -38,7 +38,7 @@
38 * 38 *
39 * We now deal with physical addresses for I/O to the chip. -DaveM 39 * We now deal with physical addresses for I/O to the chip. -DaveM
40 */ 40 */
41static __inline__ u8 mostek_read(void * __iomem addr) 41static __inline__ u8 mostek_read(void __iomem *addr)
42{ 42{
43 u8 ret; 43 u8 ret;
44 44
@@ -48,7 +48,7 @@ static __inline__ u8 mostek_read(void * __iomem addr)
48 return ret; 48 return ret;
49} 49}
50 50
51static __inline__ void mostek_write(void * __iomem addr, u8 val) 51static __inline__ void mostek_write(void __iomem *addr, u8 val)
52{ 52{
53 __asm__ __volatile__("stba %0, [%1] %2" 53 __asm__ __volatile__("stba %0, [%1] %2"
54 : /* no outputs */ 54 : /* no outputs */
@@ -67,7 +67,7 @@ static __inline__ void mostek_write(void * __iomem addr, u8 val)
67#define MOSTEK_YEAR 0x07ffUL 67#define MOSTEK_YEAR 0x07ffUL
68 68
69extern spinlock_t mostek_lock; 69extern spinlock_t mostek_lock;
70extern void *__iomem mstk48t02_regs; 70extern void __iomem *mstk48t02_regs;
71 71
72/* Control register values. */ 72/* Control register values. */
73#define MSTK_CREG_WRITE 0x80 /* Must set this before placing values. */ 73#define MSTK_CREG_WRITE 0x80 /* Must set this before placing values. */