Commit f25c525c authored by Anton Vorontsov's avatar Anton Vorontsov Committed by Kumar Gala

powerpc/83xx/suspend: Clear deep_sleeping after devices resume

Currently 83xx PMC driver clears deep_sleeping variable very early,
before devices are resumed. This makes fsl_deep_sleep() unusable in
drivers' resume() callback.

Sure, drivers can store fsl_deep_sleep() value on suspend and use
the stored value on resume. But a better solution is to postpone
clearing the deep_sleeping variable, i.e. move it into finish()
callback.
Signed-off-by: default avatarAnton Vorontsov <avorontsov@ru.mvista.com>
Acked-by: default avatarScott Wood <scottwood@freescale.com>
Signed-off-by: default avatarKumar Gala <galak@kernel.crashing.org>
parent b22b97c1
...@@ -194,7 +194,7 @@ out: ...@@ -194,7 +194,7 @@ out:
return ret; return ret;
} }
static void mpc83xx_suspend_finish(void) static void mpc83xx_suspend_end(void)
{ {
deep_sleeping = 0; deep_sleeping = 0;
} }
...@@ -278,7 +278,7 @@ static struct platform_suspend_ops mpc83xx_suspend_ops = { ...@@ -278,7 +278,7 @@ static struct platform_suspend_ops mpc83xx_suspend_ops = {
.valid = mpc83xx_suspend_valid, .valid = mpc83xx_suspend_valid,
.begin = mpc83xx_suspend_begin, .begin = mpc83xx_suspend_begin,
.enter = mpc83xx_suspend_enter, .enter = mpc83xx_suspend_enter,
.finish = mpc83xx_suspend_finish, .end = mpc83xx_suspend_end,
}; };
static int pmc_probe(struct of_device *ofdev, static int pmc_probe(struct of_device *ofdev,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment