diff options
author | Sergey Lapin <slapin@ossfans.org> | 2009-12-12 00:16:37 (GMT) |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2009-12-12 00:16:37 (GMT) |
commit | 0712fb39d7ac045171f26b24b896d58adec04133 (patch) | |
tree | 3cd39199ef29cae97931df1a3c557942b8f1aa14 /arch/arm/mach-omap2/id.c | |
parent | 860fc976321fa690c5cc77a2f66e8d6ea8d52e25 (diff) | |
download | linux-0712fb39d7ac045171f26b24b896d58adec04133.tar.xz |
omap3: id code detection 3525 vs 3515
The runtime detection of OMAP3515 and OMAP3525
was reversed.
Signed-off-by: Sergey Lapin <slapin@ossfans.org>
Signed-off-by: Sanjeev Premi <premi@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/id.c')
-rw-r--r-- | arch/arm/mach-omap2/id.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c index 3641ba0..a091b53 100644 --- a/arch/arm/mach-omap2/id.c +++ b/arch/arm/mach-omap2/id.c @@ -302,10 +302,10 @@ void __init omap3_cpuinfo(void) } else if (omap3_has_iva() && omap3_has_sgx()) { /* OMAP3430, OMAP3525, OMAP3515, OMAP3503 devices */ strcpy(cpu_name, "OMAP3430/3530"); - } else if (omap3_has_sgx()) { + } else if (omap3_has_iva()) { omap_revision = OMAP3525_REV(rev); strcpy(cpu_name, "OMAP3525"); - } else if (omap3_has_iva()) { + } else if (omap3_has_sgx()) { omap_revision = OMAP3515_REV(rev); strcpy(cpu_name, "OMAP3515"); } else { |