projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
de1de15
)
ARM: imx: Fix imx5 idle logic bug
author
Robert Lee
<rob.lee@linaro.org>
Mon, 16 Apr 2012 23:37:48 +0000
(18:37 -0500)
committer
Sascha Hauer
<s.hauer@pengutronix.de>
Wed, 18 Apr 2012 09:52:24 +0000
(11:52 +0200)
The imx5_idle() check of the tzic_eanble_wake() return value uses
incorrect (inverted) logic causing all attempt to idle to fail.
Signed-off-by: Robert Lee <rob.lee@linaro.org>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
arch/arm/mach-imx/mm-imx5.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/arm/mach-imx/mm-imx5.c
b/arch/arm/mach-imx/mm-imx5.c
index 05250aed61fbbc7f73f9e7b1c5b4bca00000f6fd..e10f3914fcfe6b1d2c59f9296d373805b4740901 100644
(file)
--- a/
arch/arm/mach-imx/mm-imx5.c
+++ b/
arch/arm/mach-imx/mm-imx5.c
@@
-35,7
+35,7
@@
static void imx5_idle(void)
}
clk_enable(gpc_dvfs_clk);
mx5_cpu_lp_set(WAIT_UNCLOCKED_POWER_OFF);
- if (
tzic_enable_wake() != 0
)
+ if (
!tzic_enable_wake()
)
cpu_do_idle();
clk_disable(gpc_dvfs_clk);
}