summaryrefslogtreecommitdiffstats
path: root/arch/sh/kernel/cpu/clock.c
diff options
context:
space:
mode:
authorFrancesco VIRLINZI2009-03-13 09:08:01 +0100
committerPaul Mundt2009-03-16 12:11:00 +0100
commit50cca715a64b66ccf173767d94d4020ea0a6129c (patch)
tree56f26236a191e98825dca07e69835e42ee019d1d /arch/sh/kernel/cpu/clock.c
parentsh: Consolidate SH-Mobile CPU code in arch/sh/kernel/cpu/shmobile/. (diff)
downloadkernel-qcow2-linux-50cca715a64b66ccf173767d94d4020ea0a6129c.tar.gz
kernel-qcow2-linux-50cca715a64b66ccf173767d94d4020ea0a6129c.tar.xz
kernel-qcow2-linux-50cca715a64b66ccf173767d94d4020ea0a6129c.zip
sh: clkfwk: Safer resume from hibernation.
This patch fixes a possible problem in the resume from hibenration. It temporaneally saves the clk->rate on the stack to avoid any possible change during the clk->set_parent(..) call. Signed-off-by: Francesco Virlinzi <francesco.virlinzi@st.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/cpu/clock.c')
-rw-r--r--arch/sh/kernel/cpu/clock.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/sh/kernel/cpu/clock.c b/arch/sh/kernel/cpu/clock.c
index 3209a8740fa4..1dc896483b59 100644
--- a/arch/sh/kernel/cpu/clock.c
+++ b/arch/sh/kernel/cpu/clock.c
@@ -372,12 +372,14 @@ static int clks_sysdev_suspend(struct sys_device *dev, pm_message_t state)
if (prev_state.event == PM_EVENT_FREEZE) {
list_for_each_entry(clkp, &clock_list, node)
if (likely(clkp->ops)) {
+ unsigned long rate = clkp->rate;
+
if (likely(clkp->ops->set_parent))
clkp->ops->set_parent(clkp,
clkp->parent);
if (likely(clkp->ops->set_rate))
clkp->ops->set_rate(clkp,
- clkp->rate, NO_CHANGE);
+ rate, NO_CHANGE);
else if (likely(clkp->ops->recalc))
clkp->ops->recalc(clkp);
}