Skip to content

Commit

Permalink
omap2/3: Fix initcalls for multi-omap
Browse files Browse the repository at this point in the history
Otherwise the wrong initcalls can run.

Signed-off-by: Tony Lindgren <tony@atomide.com>
  • Loading branch information
Tony Lindgren committed Feb 15, 2010
1 parent 140455f commit 4323e9f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 6 additions & 1 deletion arch/arm/mach-omap2/devices.c
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,12 @@ static struct platform_device dummy_pdev = {
**/
static void __init omap_hsmmc_reset(void)
{
u32 i, nr_controllers = cpu_is_omap44xx() ? OMAP44XX_NR_MMC :
u32 i, nr_controllers;

if (cpu_is_omap242x())
return;

nr_controllers = cpu_is_omap44xx() ? OMAP44XX_NR_MMC :
(cpu_is_omap34xx() ? OMAP34XX_NR_MMC : OMAP24XX_NR_MMC);

for (i = 0; i < nr_controllers; i++) {
Expand Down
3 changes: 3 additions & 0 deletions arch/arm/mach-omap2/emu.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ static struct amba_device omap3_etm_device = {

static int __init emu_init(void)
{
if (!cpu_is_omap34xx())
return -ENODEV;

amba_device_register(&omap3_etb_device, &iomem_resource);
amba_device_register(&omap3_etm_device, &iomem_resource);

Expand Down

0 comments on commit 4323e9f

Please sign in to comment.