aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSudeep Holla <sudeep.holla@arm.com>2015-09-21 11:47:10 -0400
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2015-11-19 03:46:05 -0500
commita2d1e1ed18dbd67c7d0e20e7c55336d075273b18 (patch)
treef9ce1947044abc0f2b54ad98f76e0b70adc1adc2
parent203e942d20ab62f777360ae18c429237efef682b (diff)
[media] media: st-rc: remove misuse of IRQF_NO_SUSPEND flag
The device is set as wakeup capable using proper wakeup API but the driver misuses IRQF_NO_SUSPEND to set the interrupt as wakeup source which is incorrect. This patch removes the use of IRQF_NO_SUSPEND flags replacing it with enable_irq_wake instead. Cc: Srinivas Kandagatla <srinivas.kandagatla@gmail.com> Cc: Maxime Coquelin <maxime.coquelin@st.com> Cc: Patrice Chotard <patrice.chotard@st.com> Cc: linux-arm-kernel@lists.infradead.org Cc: kernel@stlinux.com Signed-off-by: Sudeep Holla <sudeep.holla@arm.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
-rw-r--r--drivers/media/rc/st_rc.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/drivers/media/rc/st_rc.c b/drivers/media/rc/st_rc.c
index 37d040158dff..1fa0c9d1c508 100644
--- a/drivers/media/rc/st_rc.c
+++ b/drivers/media/rc/st_rc.c
@@ -16,6 +16,7 @@
16#include <linux/reset.h> 16#include <linux/reset.h>
17#include <media/rc-core.h> 17#include <media/rc-core.h>
18#include <linux/pinctrl/consumer.h> 18#include <linux/pinctrl/consumer.h>
19#include <linux/pm_wakeirq.h>
19 20
20struct st_rc_device { 21struct st_rc_device {
21 struct device *dev; 22 struct device *dev;
@@ -190,6 +191,9 @@ static void st_rc_hardware_init(struct st_rc_device *dev)
190static int st_rc_remove(struct platform_device *pdev) 191static int st_rc_remove(struct platform_device *pdev)
191{ 192{
192 struct st_rc_device *rc_dev = platform_get_drvdata(pdev); 193 struct st_rc_device *rc_dev = platform_get_drvdata(pdev);
194
195 dev_pm_clear_wake_irq(&pdev->dev);
196 device_init_wakeup(&pdev->dev, false);
193 clk_disable_unprepare(rc_dev->sys_clock); 197 clk_disable_unprepare(rc_dev->sys_clock);
194 rc_unregister_device(rc_dev->rdev); 198 rc_unregister_device(rc_dev->rdev);
195 return 0; 199 return 0;
@@ -298,22 +302,22 @@ static int st_rc_probe(struct platform_device *pdev)
298 rdev->map_name = RC_MAP_LIRC; 302 rdev->map_name = RC_MAP_LIRC;
299 rdev->input_name = "ST Remote Control Receiver"; 303 rdev->input_name = "ST Remote Control Receiver";
300 304
301 /* enable wake via this device */
302 device_set_wakeup_capable(dev, true);
303 device_set_wakeup_enable(dev, true);
304
305 ret = rc_register_device(rdev); 305 ret = rc_register_device(rdev);
306 if (ret < 0) 306 if (ret < 0)
307 goto clkerr; 307 goto clkerr;
308 308
309 rc_dev->rdev = rdev; 309 rc_dev->rdev = rdev;
310 if (devm_request_irq(dev, rc_dev->irq, st_rc_rx_interrupt, 310 if (devm_request_irq(dev, rc_dev->irq, st_rc_rx_interrupt,
311 IRQF_NO_SUSPEND, IR_ST_NAME, rc_dev) < 0) { 311 0, IR_ST_NAME, rc_dev) < 0) {
312 dev_err(dev, "IRQ %d register failed\n", rc_dev->irq); 312 dev_err(dev, "IRQ %d register failed\n", rc_dev->irq);
313 ret = -EINVAL; 313 ret = -EINVAL;
314 goto rcerr; 314 goto rcerr;
315 } 315 }
316 316
317 /* enable wake via this device */
318 device_init_wakeup(dev, true);
319 dev_pm_set_wake_irq(dev, rc_dev->irq);
320
317 /** 321 /**
318 * for LIRC_MODE_MODE2 or LIRC_MODE_PULSE or LIRC_MODE_RAW 322 * for LIRC_MODE_MODE2 or LIRC_MODE_PULSE or LIRC_MODE_RAW
319 * lircd expects a long space first before a signal train to sync. 323 * lircd expects a long space first before a signal train to sync.