aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2007-03-03 06:28:54 -0500
committerMauro Carvalho Chehab <mchehab@infradead.org>2007-04-27 14:44:12 -0400
commita51a50bd01e9f45245edd67dad7cef3ddb8452c5 (patch)
tree9a6e484436d1cbd1ab7f0cbc216c3048f12d7923 /drivers
parent4b0e51dd6d7998a7acaca880392979a4a7072d21 (diff)
V4L/DVB (5377): Replace SA_* with IRQF_*
SA_* interrupt flags are being phased out, update to newer flags. Thanks to Maarten Maathuis for pointing this out to me. Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/media/video/ivtv/ivtv-driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/ivtv/ivtv-driver.c b/drivers/media/video/ivtv/ivtv-driver.c
index 8d3876588b88..9a8dae811ddf 100644
--- a/drivers/media/video/ivtv/ivtv-driver.c
+++ b/drivers/media/video/ivtv/ivtv-driver.c
@@ -1162,7 +1162,7 @@ static int __devinit ivtv_probe(struct pci_dev *dev,
1162 1162
1163 /* Register IRQ */ 1163 /* Register IRQ */
1164 retval = request_irq(itv->dev->irq, ivtv_irq_handler, 1164 retval = request_irq(itv->dev->irq, ivtv_irq_handler,
1165 SA_SHIRQ | SA_INTERRUPT, itv->name, (void *)itv); 1165 IRQF_SHARED | IRQF_DISABLED, itv->name, (void *)itv);
1166 if (retval) { 1166 if (retval) {
1167 IVTV_ERR("Failed to register irq %d\n", retval); 1167 IVTV_ERR("Failed to register irq %d\n", retval);
1168 goto free_streams; 1168 goto free_streams;