Skip to content

Commit

Permalink
omap3: move check_revision above check_features
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Nishanth Menon authored and Tony Lindgren committed Nov 22, 2009
1 parent 839c978 commit 05574bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-omap2/id.c
Original file line number Diff line number Diff line change
Expand Up @@ -352,8 +352,8 @@ void __init omap2_check_revision(void)
if (cpu_is_omap24xx())
omap24xx_check_revision();
else if (cpu_is_omap34xx()) {
omap3_check_features();
omap3_check_revision();
omap3_check_features();
omap3_cpuinfo();
}
else if (cpu_is_omap44xx()) {
Expand Down

0 comments on commit 05574bb

Please sign in to comment.