diff options
| author | SRICHARAN R <r.sricharan@ti.com> | 2013-02-04 04:22:00 +0000 |
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-03-11 11:06:09 -0400 |
| commit | 01b753ff7badb5b8670794de3d5dd71e1c4c9baf (patch) | |
| tree | 8f65d803f009d86910345fccc4989141ec7029f4 /arch/arm/cpu/armv7/omap-common/emif-common.c | |
| parent | 9ca8bfea80f38e3b423e339499c861ddc24b830c (diff) | |
| download | olio-uboot-2014.01-01b753ff7badb5b8670794de3d5dd71e1c4c9baf.tar.xz olio-uboot-2014.01-01b753ff7badb5b8670794de3d5dd71e1c4c9baf.zip | |
ARM: OMAP4+: Change the PRCM structure prototype common for all Socs
The current PRCM structure prototype directly matches the hardware
register layout. So there is a need to change this for every new silicon
revision which has register space changes.
Avoiding this by making the prototye generic and populating the register
addresses seperately for all Socs.
Signed-off-by: R Sricharan <r.sricharan@ti.com>
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Diffstat (limited to 'arch/arm/cpu/armv7/omap-common/emif-common.c')
| -rw-r--r-- | arch/arm/cpu/armv7/omap-common/emif-common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/cpu/armv7/omap-common/emif-common.c b/arch/arm/cpu/armv7/omap-common/emif-common.c index 8864abc16..bb37cf314 100644 --- a/arch/arm/cpu/armv7/omap-common/emif-common.c +++ b/arch/arm/cpu/armv7/omap-common/emif-common.c @@ -1289,9 +1289,9 @@ void sdram_init(void) if (!(in_sdram || warm_reset())) { if (sdram_type == EMIF_SDRAM_TYPE_LPDDR2) - bypass_dpll(&prcm->cm_clkmode_dpll_core); + bypass_dpll((*prcm)->cm_clkmode_dpll_core); else - writel(CM_DLL_CTRL_NO_OVERRIDE, &prcm->cm_dll_ctrl); + writel(CM_DLL_CTRL_NO_OVERRIDE, (*prcm)->cm_dll_ctrl); } if (!in_sdram) |