diff options
Diffstat (limited to 'arch/sh/kernel/cpu')
-rw-r--r-- | arch/sh/kernel/cpu/clock.c | 4 |
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) | |||
372 | if (prev_state.event == PM_EVENT_FREEZE) { | 372 | if (prev_state.event == PM_EVENT_FREEZE) { |
373 | list_for_each_entry(clkp, &clock_list, node) | 373 | list_for_each_entry(clkp, &clock_list, node) |
374 | if (likely(clkp->ops)) { | 374 | if (likely(clkp->ops)) { |
375 | unsigned long rate = clkp->rate; | ||
376 | |||
375 | if (likely(clkp->ops->set_parent)) | 377 | if (likely(clkp->ops->set_parent)) |
376 | clkp->ops->set_parent(clkp, | 378 | clkp->ops->set_parent(clkp, |
377 | clkp->parent); | 379 | clkp->parent); |
378 | if (likely(clkp->ops->set_rate)) | 380 | if (likely(clkp->ops->set_rate)) |
379 | clkp->ops->set_rate(clkp, | 381 | clkp->ops->set_rate(clkp, |
380 | clkp->rate, NO_CHANGE); | 382 | rate, NO_CHANGE); |
381 | else if (likely(clkp->ops->recalc)) | 383 | else if (likely(clkp->ops->recalc)) |
382 | clkp->ops->recalc(clkp); | 384 | clkp->ops->recalc(clkp); |
383 | } | 385 | } |