diff options
author | Paul Walmsley <paul@pwsan.com> | 2010-10-08 19:40:17 +0200 |
---|---|---|
committer | Paul Walmsley <paul@pwsan.com> | 2010-10-08 19:40:17 +0200 |
commit | 54164bb2927edd9f183a108a0d037d80639c8429 (patch) | |
tree | 5b3097aa69effb51badb1612564443c40a101fe3 /arch/arm/plat-omap/common.c | |
parent | OMAP2+: Kconfig: disallow builds for boards that don't use the currently-sele... (diff) | |
download | linux-54164bb2927edd9f183a108a0d037d80639c8429.tar.xz linux-54164bb2927edd9f183a108a0d037d80639c8429.zip |
OMAP2420: CTRL: fix OMAP242X_CTRL_REGADDR macro
Conform the OMAP2420_CTRL_BASE macro name to the standard of the rest of the
OMAP*_CTRL_BASE macro names. This fixes a bug in the OMAP2420 SCM code that
prevented OMAP242X_CTRL_REGADDR from working.
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Diffstat (limited to 'arch/arm/plat-omap/common.c')
-rw-r--r-- | arch/arm/plat-omap/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/plat-omap/common.c b/arch/arm/plat-omap/common.c index 947de3fb93f3..cbaf14bbe197 100644 --- a/arch/arm/plat-omap/common.c +++ b/arch/arm/plat-omap/common.c @@ -268,7 +268,7 @@ static struct omap_globals omap242x_globals = { .tap = OMAP2_L4_IO_ADDRESS(0x48014000), .sdrc = OMAP2420_SDRC_BASE, .sms = OMAP2420_SMS_BASE, - .ctrl = OMAP2420_CTRL_BASE, + .ctrl = OMAP242X_CTRL_BASE, .prm = OMAP2420_PRM_BASE, .cm = OMAP2420_CM_BASE, }; |