summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Boudet <x-boudet@ti.com>2012-04-27 16:53:02 +0200
committerXavier Boudet <x-boudet@ti.com>2012-07-10 17:26:55 +0200
commit56744a860fa673a6fa09654f82cf98b3c7dcb613 (patch)
tree0ec4af8e835ebdabfd560f69ffea18b7fdeea0d5
parentf0e333d300342e02317d45c819d26756f7e5c813 (diff)
UBUNTU: add include guards to iomap.h
Signed-off-by: Xavier Boudet <x-boudet@ti.com>
-rw-r--r--arch/arm/mach-omap2/iomap.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/iomap.h b/arch/arm/mach-omap2/iomap.h
index 408c4913dbdc..4771a81d7457 100644
--- a/arch/arm/mach-omap2/iomap.h
+++ b/arch/arm/mach-omap2/iomap.h
@@ -30,6 +30,9 @@
* 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+#ifndef __ARCH_ARM_MACH_OMAP2_IOMAP_H
+#define __ARCH_ARM_MACH_OMAP2_IOMAP_H
+
#define OMAP2_L3_IO_OFFSET 0x90000000
#define OMAP2_L3_IO_ADDRESS(pa) IOMEM((pa) + OMAP2_L3_IO_OFFSET) /* L3 */
@@ -224,3 +227,4 @@ extern void __init omap_init_consistent_dma_size(void);
#endif
+#endif