diff options
author | SRICHARAN R <r.sricharan@ti.com> | 2012-03-12 02:25:42 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-05-15 08:31:24 +0200 |
commit | 002a2c0c66d2e1757b89ad6824b4a472dcef1076 (patch) | |
tree | 2430c5d89bff12195be42930520e5af456ab6b48 /arch/arm/cpu/armv7/omap4 | |
parent | 47c50143aad7676ffa513bc395c49eb254a2c191 (diff) | |
download | u-boot-imx-002a2c0c66d2e1757b89ad6824b4a472dcef1076.zip u-boot-imx-002a2c0c66d2e1757b89ad6824b4a472dcef1076.tar.gz u-boot-imx-002a2c0c66d2e1757b89ad6824b4a472dcef1076.tar.bz2 |
OMAP4/5: Make the sysctrl structure common
Make the sysctrl structure common, so that it can
be used in generic functions across socs.
Also change the base address of the system control module, to
include all the registers and not simply the io regs.
Signed-off-by: R Sricharan <r.sricharan@ti.com>
Diffstat (limited to 'arch/arm/cpu/armv7/omap4')
-rw-r--r-- | arch/arm/cpu/armv7/omap4/hwinit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/cpu/armv7/omap4/hwinit.c b/arch/arm/cpu/armv7/omap4/hwinit.c index afa5484..187e938 100644 --- a/arch/arm/cpu/armv7/omap4/hwinit.c +++ b/arch/arm/cpu/armv7/omap4/hwinit.c @@ -59,8 +59,8 @@ void do_io_settings(void) u32 lpddr2io; struct control_lpddr2io_regs *lpddr2io_regs = (struct control_lpddr2io_regs *)LPDDR2_IO_REGS_BASE; - struct omap4_sys_ctrl_regs *const ctrl = - (struct omap4_sys_ctrl_regs *)SYSCTRL_GENERAL_CORE_BASE; + struct omap_sys_ctrl_regs *const ctrl = + (struct omap_sys_ctrl_regs *)SYSCTRL_GENERAL_CORE_BASE; u32 omap4_rev = omap_revision(); |