All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ep93xx: add missing parentheses in IOMEM macro
@ 2009-11-17 11:49 Hubert Feurstein
  2009-11-17 16:36 ` H Hartley Sweeten
  0 siblings, 1 reply; 3+ messages in thread
From: Hubert Feurstein @ 2009-11-17 11:49 UTC (permalink / raw)
  To: linux-arm-kernel

Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
---
 arch/arm/mach-ep93xx/include/mach/io.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-ep93xx/include/mach/io.h b/arch/arm/mach-ep93xx/include/mach/io.h
index 594b77f..ddb6e32 100644
--- a/arch/arm/mach-ep93xx/include/mach/io.h
+++ b/arch/arm/mach-ep93xx/include/mach/io.h
@@ -14,7 +14,7 @@
  * A typesafe __io() variation for variable initialisers
  */
 #ifdef __ASSEMBLER__
-#define IOMEM(p)		p
+#define IOMEM(p)		(p)
 #else
 #define IOMEM(p)		((void __iomem __force *)(p))
 #endif
-- 
1.6.4.4

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

end of thread, other threads:[~2009-11-19 22:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-17 11:49 [PATCH] ep93xx: add missing parentheses in IOMEM macro Hubert Feurstein
2009-11-17 16:36 ` H Hartley Sweeten
2009-11-19 22:38   ` Russell King - ARM Linux

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.