From 4e0ab85bb9097ecc422d4237f9eec155993f2902 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Heiko=20St=C3=BCbner?= Date: Fri, 22 Mar 2013 15:14:22 +0100 Subject: [PATCH] AUO-K190x: set the correct runtime-pm state in recover MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit In the recover function the device gets powercycled and is after this again active, independent of its previous state. Signed-off-by: Heiko Stübner Signed-off-by: Tomi Valkeinen --- drivers/video/auo_k190x.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/drivers/video/auo_k190x.c b/drivers/video/auo_k190x.c index bc0b643..17f8d09 100644 --- a/drivers/video/auo_k190x.c +++ b/drivers/video/auo_k190x.c @@ -588,10 +588,16 @@ static int auok190x_power(struct auok190xfb_par *par, bool on) static void auok190x_recover(struct auok190xfb_par *par) { + struct device *dev = par->info->device; + auok190x_power(par, 0); msleep(100); auok190x_power(par, 1); + /* after powercycling the device, it's always active */ + pm_runtime_set_active(dev); + par->standby = 0; + par->init(par); /* wait for init to complete */ -- 2.7.4