Skip to content

Commit 8219b10

Browse files
committed
Fix previous OPP logic
1 parent 301321d commit 8219b10

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

arch/arm/plat-omap/omap-pm-srf.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -337,10 +337,10 @@ void omap_pm_if_exit(void)
337337

338338
u8 omap_pm_get_max_vdd1_opp()
339339
{
340-
if (cpu_is_omap3630()) {
341-
return VDD1_OPP2;
342-
} else if (cpu_is_omap3621()) {
340+
if (cpu_is_omap3621()) {
343341
return VDD1_OPP3;
342+
} else if (cpu_is_omap3630()) {
343+
return VDD1_OPP2;
344344
} else {
345345
return VDD1_OPP7;
346346
}

0 commit comments

Comments
 (0)