diff options
author | Srinivas Kandagatla <srinivas.kandagatla@linaro.org> | 2014-09-22 18:22:38 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-09-23 16:03:58 -0400 |
commit | cdd9a6316bfb85176aba83e9532fbc46c9588378 (patch) | |
tree | 61a912789ceccc2bd4cde7dadfa12c42b9a386b0 | |
parent | 89d7ce5a0f159ffa99d0521b4336b922acdc7ac5 (diff) |
[media] media: st-rc: move pm ops setup out of conditional compilation
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>
-rw-r--r-- | drivers/media/rc/st_rc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/media/rc/st_rc.c b/drivers/media/rc/st_rc.c index e0f13125bf06..03bbb096cb9b 100644 --- a/drivers/media/rc/st_rc.c +++ b/drivers/media/rc/st_rc.c | |||
@@ -376,9 +376,10 @@ static int st_rc_resume(struct device *dev) | |||
376 | return 0; | 376 | return 0; |
377 | } | 377 | } |
378 | 378 | ||
379 | static SIMPLE_DEV_PM_OPS(st_rc_pm_ops, st_rc_suspend, st_rc_resume); | ||
380 | #endif | 379 | #endif |
381 | 380 | ||
381 | static SIMPLE_DEV_PM_OPS(st_rc_pm_ops, st_rc_suspend, st_rc_resume); | ||
382 | |||
382 | #ifdef CONFIG_OF | 383 | #ifdef CONFIG_OF |
383 | static struct of_device_id st_rc_match[] = { | 384 | static struct of_device_id st_rc_match[] = { |
384 | { .compatible = "st,comms-irb", }, | 385 | { .compatible = "st,comms-irb", }, |
@@ -393,9 +394,7 @@ static struct platform_driver st_rc_driver = { | |||
393 | .name = IR_ST_NAME, | 394 | .name = IR_ST_NAME, |
394 | .owner = THIS_MODULE, | 395 | .owner = THIS_MODULE, |
395 | .of_match_table = of_match_ptr(st_rc_match), | 396 | .of_match_table = of_match_ptr(st_rc_match), |
396 | #ifdef CONFIG_PM | ||
397 | .pm = &st_rc_pm_ops, | 397 | .pm = &st_rc_pm_ops, |
398 | #endif | ||
399 | }, | 398 | }, |
400 | .probe = st_rc_probe, | 399 | .probe = st_rc_probe, |
401 | .remove = st_rc_remove, | 400 | .remove = st_rc_remove, |