public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH 1/2] ARM: sa1100: add missing include of linux/io.h
@ 2012-07-07  8:48 Arnd Bergmann
  2012-07-07  8:55 ` [PATCH 2/2] irda/pxa: Arnd Bergmann
  2012-07-07  9:06 ` [PATCH v2 1/2] ARM: sa1100: add missing include of linux/io.h Arnd Bergmann
  0 siblings, 2 replies; 5+ messages in thread
From: Arnd Bergmann @ 2012-07-07  8:48 UTC (permalink / raw)
  To: linux-arm-kernel

After c00184f9ab4 "ARM: sa11x0/pxa: convert OS timer registers to IOMEM",
pleb_defconfig produces this new warning:

arch/arm/mach-sa1100/cpu-sa1100.c: In function 'sa1100_update_dram_timings':
arch/arm/mach-sa1100/cpu-sa1100.c:153:3: error: implicit declaration of function 'IOMEM'

Adding linux/io.h to the file using the __REG() macro avoids the warning.
In the long run, we still need to convert the entire file to use
readl/writel rather than directly derefencing the pointer, but this makes
it compile again.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
diff --git a/arch/arm/mach-sa1100/cpu-sa1100.c b/arch/arm/mach-sa1100/cpu-sa1100.c
index 19b2053..e8f4d1e 100644
--- a/arch/arm/mach-sa1100/cpu-sa1100.c
+++ b/arch/arm/mach-sa1100/cpu-sa1100.c
@@ -87,6 +87,7 @@
 #include <linux/types.h>
 #include <linux/init.h>
 #include <linux/cpufreq.h>
+#include <linux/io.h>
 
 #include <asm/cputype.h>
 

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

end of thread, other threads:[~2012-07-07 11:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-07  8:48 [PATCH 1/2] ARM: sa1100: add missing include of linux/io.h Arnd Bergmann
2012-07-07  8:55 ` [PATCH 2/2] irda/pxa: Arnd Bergmann
2012-07-07  9:41   ` David Miller
2012-07-07  9:06 ` [PATCH v2 1/2] ARM: sa1100: add missing include of linux/io.h Arnd Bergmann
2012-07-07 11:31   ` Russell King - ARM Linux

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox