public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* [pm-wip-opp][PATCH] omap3: pm: fix opp initialization
@ 2010-01-06 22:42 Nishanth Menon
  2010-01-07  0:30 ` Kevin Hilman
  0 siblings, 1 reply; 2+ messages in thread
From: Nishanth Menon @ 2010-01-06 22:42 UTC (permalink / raw)
  To: linux-omap; +Cc: Nishanth Menon, Kevin Hilman

dsp_opp and l3_opps are reversed as part of commit 6e1276ff
this is wrong as the correct order needs to be l3, dsp

Signed-off-by: Nishanth Menon <nm@ti.com>
Cc: Kevin Hilman <khilman@deeprootsystems.com>
---
This was identified as part of investigation into Kevin's initial
report here:
http://marc.info/?l=linux-omap&m=126150035411486&w=2

 arch/arm/mach-omap2/pm34xx.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-omap2/pm34xx.c b/arch/arm/mach-omap2/pm34xx.c
index 9744a35..7d12a3f 100644
--- a/arch/arm/mach-omap2/pm34xx.c
+++ b/arch/arm/mach-omap2/pm34xx.c
@@ -1361,8 +1361,8 @@ void __init omap3_pm_init_opp_table(void)
 	};
 	struct omap_opp **omap3_rate_tables[] = {
 		&mpu_opps,
-		&dsp_opps,
-		&l3_opps
+		&l3_opps,
+		&dsp_opps
 	};
 
 	omap3_opp_def_list = cpu_is_omap3630() ? omap36xx_opp_def_list :
-- 
1.6.3.3


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-01-07  0:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-06 22:42 [pm-wip-opp][PATCH] omap3: pm: fix opp initialization Nishanth Menon
2010-01-07  0:30 ` Kevin Hilman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox