diff options
author | Tony Lindgren <tony@atomide.com> | 2008-12-10 17:36:30 -0800 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2008-12-10 17:36:30 -0800 |
commit | a88231430384f49bebf8a6ec607a9eb4f2254e34 (patch) | |
tree | a95be27edce50fece9cbc434e770806e49453ae7 /arch/arm/mach-omap2/clock34xx.c | |
parent | 5ba02dcab945dc0bcde7df0c5958329f34bd04ae (diff) | |
download | blackbird-op-linux-a88231430384f49bebf8a6ec607a9eb4f2254e34.tar.gz blackbird-op-linux-a88231430384f49bebf8a6ec607a9eb4f2254e34.zip |
ARM: OMAP2: Fix cpu detection
At some point omap2 changed the bits for GET_OMAP_CLASS, which
broke 15xx detection on 730 as noticed by Russell King.
This patch fixes omap2 cpu detection to respect the original
GET_OMAP_CLASS, and simplifies the detection for 34xx.
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/clock34xx.c')
-rw-r--r-- | arch/arm/mach-omap2/clock34xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/clock34xx.c b/arch/arm/mach-omap2/clock34xx.c index 084e11082f80..3c2f665742f7 100644 --- a/arch/arm/mach-omap2/clock34xx.c +++ b/arch/arm/mach-omap2/clock34xx.c @@ -475,7 +475,7 @@ int __init omap2_clk_init(void) * Update this if there are further clock changes between ES2 * and production parts */ - if (is_sil_rev_equal_to(OMAP3430_REV_ES1_0)) { + if (system_rev == OMAP3430_REV_ES1_0) { /* No 3430ES1-only rates exist, so no RATE_IN_3430ES1 */ cpu_clkflg |= CLOCK_IN_OMAP3430ES1; } else { |