diff options
Diffstat (limited to 'arch/arm/mach-omap2/io.c')
-rw-r--r-- | arch/arm/mach-omap2/io.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/io.c b/arch/arm/mach-omap2/io.c index c90f64765a3d..cd22262a2cc0 100644 --- a/arch/arm/mach-omap2/io.c +++ b/arch/arm/mach-omap2/io.c | |||
@@ -583,6 +583,11 @@ void __init am33xx_init_early(void) | |||
583 | omap_hwmod_init_postsetup(); | 583 | omap_hwmod_init_postsetup(); |
584 | omap_clk_init = am33xx_clk_init; | 584 | omap_clk_init = am33xx_clk_init; |
585 | } | 585 | } |
586 | |||
587 | void __init am33xx_init_late(void) | ||
588 | { | ||
589 | omap_common_late_init(); | ||
590 | } | ||
586 | #endif | 591 | #endif |
587 | 592 | ||
588 | #ifdef CONFIG_SOC_AM43XX | 593 | #ifdef CONFIG_SOC_AM43XX |
@@ -602,6 +607,11 @@ void __init am43xx_init_early(void) | |||
602 | am43xx_hwmod_init(); | 607 | am43xx_hwmod_init(); |
603 | omap_hwmod_init_postsetup(); | 608 | omap_hwmod_init_postsetup(); |
604 | } | 609 | } |
610 | |||
611 | void __init am43xx_init_late(void) | ||
612 | { | ||
613 | omap_common_late_init(); | ||
614 | } | ||
605 | #endif | 615 | #endif |
606 | 616 | ||
607 | #ifdef CONFIG_ARCH_OMAP4 | 617 | #ifdef CONFIG_ARCH_OMAP4 |
@@ -657,6 +667,11 @@ void __init omap5_init_early(void) | |||
657 | omap54xx_hwmod_init(); | 667 | omap54xx_hwmod_init(); |
658 | omap_hwmod_init_postsetup(); | 668 | omap_hwmod_init_postsetup(); |
659 | } | 669 | } |
670 | |||
671 | void __init omap5_init_late(void) | ||
672 | { | ||
673 | omap_common_late_init(); | ||
674 | } | ||
660 | #endif | 675 | #endif |
661 | 676 | ||
662 | #ifdef CONFIG_SOC_DRA7XX | 677 | #ifdef CONFIG_SOC_DRA7XX |
@@ -677,6 +692,11 @@ void __init dra7xx_init_early(void) | |||
677 | dra7xx_hwmod_init(); | 692 | dra7xx_hwmod_init(); |
678 | omap_hwmod_init_postsetup(); | 693 | omap_hwmod_init_postsetup(); |
679 | } | 694 | } |
695 | |||
696 | void __init dra7xx_init_late(void) | ||
697 | { | ||
698 | omap_common_late_init(); | ||
699 | } | ||
680 | #endif | 700 | #endif |
681 | 701 | ||
682 | 702 | ||