aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@free-electrons.com>2013-10-13 02:08:36 -0400
committerMauro Carvalho Chehab <m.chehab@samsung.com>2013-10-17 05:09:02 -0400
commita232728d1ef26c8d16a81d4a7e52513d26bd01d2 (patch)
tree62e8e2d44b5a0db65751577cbc96e9b697de4134
parent43917b2552425ca7fa936d6d122dd4813a3faaac (diff)
[media] ir-rx51: remove deprecated IRQF_DISABLED
This patch proposes to remove the use of the IRQF_DISABLED flag It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
-rw-r--r--drivers/media/rc/ir-rx51.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/media/rc/ir-rx51.c b/drivers/media/rc/ir-rx51.c
index 31b955bf7664..b1e19a26208d 100644
--- a/drivers/media/rc/ir-rx51.c
+++ b/drivers/media/rc/ir-rx51.c
@@ -201,8 +201,7 @@ static int lirc_rx51_init_port(struct lirc_rx51 *lirc_rx51)
201 201
202 lirc_rx51->irq_num = omap_dm_timer_get_irq(lirc_rx51->pulse_timer); 202 lirc_rx51->irq_num = omap_dm_timer_get_irq(lirc_rx51->pulse_timer);
203 retval = request_irq(lirc_rx51->irq_num, lirc_rx51_interrupt_handler, 203 retval = request_irq(lirc_rx51->irq_num, lirc_rx51_interrupt_handler,
204 IRQF_DISABLED | IRQF_SHARED, 204 IRQF_SHARED, "lirc_pulse_timer", lirc_rx51);
205 "lirc_pulse_timer", lirc_rx51);
206 if (retval) { 205 if (retval) {
207 dev_err(lirc_rx51->dev, ": Failed to request interrupt line\n"); 206 dev_err(lirc_rx51->dev, ": Failed to request interrupt line\n");
208 goto err2; 207 goto err2;