Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[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>

authored by

Michael Opdenacker and committed by
Mauro Carvalho Chehab
a232728d 43917b25

+1 -2
+1 -2
drivers/media/rc/ir-rx51.c
··· 201 201 202 202 lirc_rx51->irq_num = omap_dm_timer_get_irq(lirc_rx51->pulse_timer); 203 203 retval = request_irq(lirc_rx51->irq_num, lirc_rx51_interrupt_handler, 204 - IRQF_DISABLED | IRQF_SHARED, 205 - "lirc_pulse_timer", lirc_rx51); 204 + IRQF_SHARED, "lirc_pulse_timer", lirc_rx51); 206 205 if (retval) { 207 206 dev_err(lirc_rx51->dev, ": Failed to request interrupt line\n"); 208 207 goto err2;