diff options
author | Tony Lindgren <tony@atomide.com> | 2010-12-10 18:46:24 +0100 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2010-12-10 18:46:24 +0100 |
commit | 7f9187c26fd120bd2f0ce089e5f46c4bd3c4193b (patch) | |
tree | 5077dcdafcf3281b94ef31eee399c35e7bfadf4b /arch/arm/mach-omap1/leds.c | |
parent | omap: Split omap_read/write functions for omap1 and omap2+ (diff) | |
download | linux-7f9187c26fd120bd2f0ce089e5f46c4bd3c4193b.tar.xz linux-7f9187c26fd120bd2f0ce089e5f46c4bd3c4193b.zip |
omap1: Add initcall checks for omap1 and booted board
Otherwise multi-omap1 configurations will fail.
Tested-by: Janusz Krzysztofik <jkrzyszt@tis.icnet.pl>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap1/leds.c')
-rw-r--r-- | arch/arm/mach-omap1/leds.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-omap1/leds.c b/arch/arm/mach-omap1/leds.c index 277f356d4cd0..22eb11dde9e7 100644 --- a/arch/arm/mach-omap1/leds.c +++ b/arch/arm/mach-omap1/leds.c @@ -17,6 +17,9 @@ static int __init omap_leds_init(void) { + if (!cpu_class_is_omap1()) + return -ENODEV; + if (machine_is_omap_innovator()) leds_event = innovator_leds_event; |