diff options
author | Tony Lindgren <tony@atomide.com> | 2013-01-11 14:24:18 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2013-01-11 14:24:18 -0500 |
commit | b76c8b19b082c3fc84725de0d3ba5ee1f571c0ae (patch) | |
tree | 7681e38be4fa99573874a8796afbf54ded1feb0b /arch/arm/mach-omap2/omap_device.c | |
parent | 816a65ef4ce1848d8083d9e198922ddafbe221f2 (diff) |
ARM: OMAP2+: Use omap initcalls
This way the initcalls don't run on other SoCs on multiplatform
kernels. Otherwise we'll get something like this when booting
on vexpress:
omap_hwmod: _ensure_mpu_hwmod_is_setup: MPU initiator hwmod mpu not yet registered
...
WARNING: at arch/arm/mach-omap2/pm.c:82 _init_omap_device+0x74/0x94()
_init_omap_device: could not find omap_hwmod for mpu
...
omap-dma-engine omap-dma-engine: OMAP DMA engine driver
...
Tested-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/omap_device.c')
-rw-r--r-- | arch/arm/mach-omap2/omap_device.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/omap_device.c b/arch/arm/mach-omap2/omap_device.c index e065daa537c0..d109f06785da 100644 --- a/arch/arm/mach-omap2/omap_device.c +++ b/arch/arm/mach-omap2/omap_device.c | |||
@@ -89,6 +89,7 @@ | |||
89 | #include <linux/of.h> | 89 | #include <linux/of.h> |
90 | #include <linux/notifier.h> | 90 | #include <linux/notifier.h> |
91 | 91 | ||
92 | #include "soc.h" | ||
92 | #include "omap_device.h" | 93 | #include "omap_device.h" |
93 | #include "omap_hwmod.h" | 94 | #include "omap_hwmod.h" |
94 | 95 | ||
@@ -1259,7 +1260,7 @@ static int __init omap_device_init(void) | |||
1259 | bus_register_notifier(&platform_bus_type, &platform_nb); | 1260 | bus_register_notifier(&platform_bus_type, &platform_nb); |
1260 | return 0; | 1261 | return 0; |
1261 | } | 1262 | } |
1262 | core_initcall(omap_device_init); | 1263 | omap_core_initcall(omap_device_init); |
1263 | 1264 | ||
1264 | /** | 1265 | /** |
1265 | * omap_device_late_idle - idle devices without drivers | 1266 | * omap_device_late_idle - idle devices without drivers |
@@ -1297,4 +1298,4 @@ static int __init omap_device_late_init(void) | |||
1297 | bus_for_each_dev(&platform_bus_type, NULL, NULL, omap_device_late_idle); | 1298 | bus_for_each_dev(&platform_bus_type, NULL, NULL, omap_device_late_idle); |
1298 | return 0; | 1299 | return 0; |
1299 | } | 1300 | } |
1300 | late_initcall(omap_device_late_init); | 1301 | omap_late_initcall(omap_device_late_init); |