Commit 4ed1c837 authored by Tony Lindgren's avatar Tony Lindgren

ARM: OMAP2: Fix few more macros for reg evaluation

Fix few more macros for reg evaluation
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 6fc6d9c1
...@@ -18,9 +18,12 @@ ...@@ -18,9 +18,12 @@
#include <asm/arch/io.h> #include <asm/arch/io.h>
#define OMAP242X_CTRL_REGADDR(reg) (void __iomem *)IO_ADDRESS(OMAP242X_CTRL_BASE + reg) #define OMAP242X_CTRL_REGADDR(reg) \
#define OMAP243X_CTRL_REGADDR(reg) (void __iomem *)IO_ADDRESS(OMAP243X_CTRL_BASE + reg) (void __iomem *)IO_ADDRESS(OMAP242X_CTRL_BASE + (reg))
#define OMAP343X_CTRL_REGADDR(reg) (void __iomem *)IO_ADDRESS(OMAP343X_CTRL_BASE + reg) #define OMAP243X_CTRL_REGADDR(reg) \
(void __iomem *)IO_ADDRESS(OMAP243X_CTRL_BASE + (reg))
#define OMAP343X_CTRL_REGADDR(reg) \
(void __iomem *)IO_ADDRESS(OMAP343X_CTRL_BASE + (reg))
/* /*
* As elsewhere, the "OMAP2_" prefix indicates that the macro is valid for * As elsewhere, the "OMAP2_" prefix indicates that the macro is valid for
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment