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

[media] ivtv: 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
43917b25 7b5e71ad

+1 -1
+1 -1
drivers/media/pci/ivtv/ivtv-driver.c
··· 1261 1261 1262 1262 /* Register IRQ */ 1263 1263 retval = request_irq(itv->pdev->irq, ivtv_irq_handler, 1264 - IRQF_SHARED | IRQF_DISABLED, itv->v4l2_dev.name, (void *)itv); 1264 + IRQF_SHARED, itv->v4l2_dev.name, (void *)itv); 1265 1265 if (retval) { 1266 1266 IVTV_ERR("Failed to register irq %d\n", retval); 1267 1267 goto free_i2c;