]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
[media] media: st-rc: move pm ops setup out of conditional compilation
authorSrinivas Kandagatla <srinivas.kandagatla@linaro.org>
Mon, 22 Sep 2014 22:22:38 +0000 (19:22 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Tue, 23 Sep 2014 20:03:58 +0000 (17:03 -0300)
This patch moves setting of pm_ops out of the CONFIG_PM_SLEEP condition.
Setting pm ops under CONFIG_PM_SLEEP does not make any sense.
This patch also remove unnecessary also remove CONFIG_PM condition for pm
member in st_rc_driver structure.

Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Acked-by: Maxime Coquelin <maxime.coquelin@st.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/rc/st_rc.c

index e0f13125bf06430ac570886ab0a639fc4d712c96..03bbb096cb9b8103ee2c87373222eebaa4f56169 100644 (file)
@@ -376,9 +376,10 @@ static int st_rc_resume(struct device *dev)
        return 0;
 }
 
-static SIMPLE_DEV_PM_OPS(st_rc_pm_ops, st_rc_suspend, st_rc_resume);
 #endif
 
+static SIMPLE_DEV_PM_OPS(st_rc_pm_ops, st_rc_suspend, st_rc_resume);
+
 #ifdef CONFIG_OF
 static struct of_device_id st_rc_match[] = {
        { .compatible = "st,comms-irb", },
@@ -393,9 +394,7 @@ static struct platform_driver st_rc_driver = {
                .name = IR_ST_NAME,
                .owner  = THIS_MODULE,
                .of_match_table = of_match_ptr(st_rc_match),
-#ifdef CONFIG_PM
                .pm     = &st_rc_pm_ops,
-#endif
        },
        .probe = st_rc_probe,
        .remove = st_rc_remove,