diff options
Diffstat (limited to 'arch/arm/mach-omap2/prm_common.c')
-rw-r--r-- | arch/arm/mach-omap2/prm_common.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/prm_common.c b/arch/arm/mach-omap2/prm_common.c index a834124c5309..3e932b8b8ce9 100644 --- a/arch/arm/mach-omap2/prm_common.c +++ b/arch/arm/mach-omap2/prm_common.c | |||
@@ -770,7 +770,13 @@ int __init omap2_prm_base_init(void) | |||
770 | 770 | ||
771 | int __init omap2_prcm_base_init(void) | 771 | int __init omap2_prcm_base_init(void) |
772 | { | 772 | { |
773 | return omap2_prm_base_init(); | 773 | int ret; |
774 | |||
775 | ret = omap2_prm_base_init(); | ||
776 | if (ret) | ||
777 | return ret; | ||
778 | |||
779 | return omap2_cm_base_init(); | ||
774 | } | 780 | } |
775 | 781 | ||
776 | /** | 782 | /** |