All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] 2.6.14 include/asm-arm/arch-ixp4xx/io.h: eliminate warning for pointer passed to integral function argument
@ 2005-10-28  6:19 John Bowler
  2005-10-28  7:57 ` Russell King
  0 siblings, 1 reply; 3+ messages in thread
From: John Bowler @ 2005-10-28  6:19 UTC (permalink / raw)
  To: 'Deepak Saxena'; +Cc: linux-kernel, linux-arm-kernel

Fix for a compiler warning, this wasn't apparent in 2.6.12, I
believe the compiler options have been changed (somewhere) so
that passing a (void*) to a (u32) argument is now warned.

This accounts for the majority of the warnings in my builds of
the 2.6.14 kernel for NSLU2.

This is the trivial fix, but may be controversial in that it
simply casts away the warning - the alternative is to change
all the static inlines and potentially some of the callers
thereof.

Signed-off-by: John Bowler <jbowler@acm.org>

--- linux-2.6.14-rc5/include/asm-arm/arch-ixp4xx/io.h	2005-10-26 08:37:22.844417060 -0700
+++ patched/include/asm-arm/arch-ixp4xx/io.h	2005-10-26 12:14:20.771583571 -0700
@@ -80,21 +80,21 @@ __ixp4xx_iounmap(void __iomem *addr)
 #define __arch_ioremap(a, s, f, x)	__ixp4xx_ioremap(a, s, f, x)
 #define	__arch_iounmap(a)		__ixp4xx_iounmap(a)
 
-#define	writeb(p, v)			__ixp4xx_writeb(p, v)
-#define	writew(p, v)			__ixp4xx_writew(p, v)
-#define	writel(p, v)			__ixp4xx_writel(p, v)
-
-#define	writesb(p, v, l)		__ixp4xx_writesb(p, v, l)
-#define	writesw(p, v, l)		__ixp4xx_writesw(p, v, l)
-#define	writesl(p, v, l)		__ixp4xx_writesl(p, v, l)
+#define	writeb(v, p)			__ixp4xx_writeb(v, (u32)p)
+#define	writew(v, p)			__ixp4xx_writew(v, (u32)p)
+#define	writel(v, p)			__ixp4xx_writel(v, (u32)p)
+
+#define	writesb(p, v, l)		__ixp4xx_writesb((u32)p, v, l)
+#define	writesw(p, v, l)		__ixp4xx_writesw((u32)p, v, l)
+#define	writesl(p, v, l)		__ixp4xx_writesl((u32)p, v, l)
 	
-#define	readb(p)			__ixp4xx_readb(p)
-#define	readw(p)			__ixp4xx_readw(p)
-#define	readl(p)			__ixp4xx_readl(p)
+#define	readb(p)			__ixp4xx_readb((u32)p)
+#define	readw(p)			__ixp4xx_readw((u32)p)
+#define	readl(p)			__ixp4xx_readl((u32)p)
 	
-#define	readsb(p, v, l)			__ixp4xx_readsb(p, v, l)
-#define	readsw(p, v, l)			__ixp4xx_readsw(p, v, l)
-#define	readsl(p, v, l)			__ixp4xx_readsl(p, v, l)
+#define	readsb(p, v, l)			__ixp4xx_readsb((u32)p, v, l)
+#define	readsw(p, v, l)			__ixp4xx_readsw((u32)p, v, l)
+#define	readsl(p, v, l)			__ixp4xx_readsl((u32)p, v, l)
 
 static inline void 
 __ixp4xx_writeb(u8 value, u32 addr)


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-10-31  1:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-28  6:19 [PATCH] 2.6.14 include/asm-arm/arch-ixp4xx/io.h: eliminate warning for pointer passed to integral function argument John Bowler
2005-10-28  7:57 ` Russell King
2005-10-31  1:49   ` John Bowler

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.