diff options
author | Nishanth Menon <nm@ti.com> | 2009-11-22 13:11:12 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2009-11-22 13:24:32 -0500 |
commit | 05574bb27a8a46d354582e72691ff6cb40712da9 (patch) | |
tree | 45732aa8d22cee417f59b25abf7ec40856e6c512 /arch/arm/mach-omap2 | |
parent | 839c978794f3d2d0dce4693bbb087f9507bbab9b (diff) |
omap3: move check_revision above check_features
omap3_check_revision() does not depend on omap3_check_features()
move this above so that we can add logic based on revision
detected in check_features.
Signed-off-by: Nishanth Menon <nm@ti.com>
Acked-by: Mika Westerberg <mika.westerberg@iki.fi>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2')
-rw-r--r-- | arch/arm/mach-omap2/id.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c index 441ca26270a5..6c11b41b4d44 100644 --- a/arch/arm/mach-omap2/id.c +++ b/arch/arm/mach-omap2/id.c | |||
@@ -352,8 +352,8 @@ void __init omap2_check_revision(void) | |||
352 | if (cpu_is_omap24xx()) | 352 | if (cpu_is_omap24xx()) |
353 | omap24xx_check_revision(); | 353 | omap24xx_check_revision(); |
354 | else if (cpu_is_omap34xx()) { | 354 | else if (cpu_is_omap34xx()) { |
355 | omap3_check_features(); | ||
356 | omap3_check_revision(); | 355 | omap3_check_revision(); |
356 | omap3_check_features(); | ||
357 | omap3_cpuinfo(); | 357 | omap3_cpuinfo(); |
358 | } | 358 | } |
359 | else if (cpu_is_omap44xx()) { | 359 | else if (cpu_is_omap44xx()) { |