diff options
Diffstat (limited to 'arch/arm/plat-omap/sram.c')
-rw-r--r-- | arch/arm/plat-omap/sram.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/arm/plat-omap/sram.c b/arch/arm/plat-omap/sram.c index 38353386e91e..876f5a7ecafd 100644 --- a/arch/arm/plat-omap/sram.c +++ b/arch/arm/plat-omap/sram.c | |||
@@ -365,16 +365,17 @@ static inline int omap243x_sram_init(void) | |||
365 | static u32 (*_omap3_sram_configure_core_dpll)(u32 sdrc_rfr_ctrl, | 365 | static u32 (*_omap3_sram_configure_core_dpll)(u32 sdrc_rfr_ctrl, |
366 | u32 sdrc_actim_ctrla, | 366 | u32 sdrc_actim_ctrla, |
367 | u32 sdrc_actim_ctrlb, | 367 | u32 sdrc_actim_ctrlb, |
368 | u32 m2); | 368 | u32 m2, u32 unlock_dll); |
369 | u32 omap3_configure_core_dpll(u32 sdrc_rfr_ctrl, u32 sdrc_actim_ctrla, | 369 | u32 omap3_configure_core_dpll(u32 sdrc_rfr_ctrl, u32 sdrc_actim_ctrla, |
370 | u32 sdrc_actim_ctrlb, u32 m2) | 370 | u32 sdrc_actim_ctrlb, u32 m2, u32 unlock_dll) |
371 | { | 371 | { |
372 | if (!_omap3_sram_configure_core_dpll) | 372 | if (!_omap3_sram_configure_core_dpll) |
373 | omap_sram_error(); | 373 | omap_sram_error(); |
374 | 374 | ||
375 | return _omap3_sram_configure_core_dpll(sdrc_rfr_ctrl, | 375 | return _omap3_sram_configure_core_dpll(sdrc_rfr_ctrl, |
376 | sdrc_actim_ctrla, | 376 | sdrc_actim_ctrla, |
377 | sdrc_actim_ctrlb, m2); | 377 | sdrc_actim_ctrlb, m2, |
378 | unlock_dll); | ||
378 | } | 379 | } |
379 | 380 | ||
380 | /* REVISIT: Should this be same as omap34xx_sram_init() after off-idle? */ | 381 | /* REVISIT: Should this be same as omap34xx_sram_init() after off-idle? */ |