diff options
author | Hans Verkuil | 2007-03-03 12:28:54 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab | 2007-04-27 20:44:12 +0200 |
commit | a51a50bd01e9f45245edd67dad7cef3ddb8452c5 (patch) | |
tree | 9a6e484436d1cbd1ab7f0cbc216c3048f12d7923 /drivers/media/video | |
parent | V4L/DVB (5376): Add dependency on VIDEO_V4L1 (diff) | |
download | kernel-qcow2-linux-a51a50bd01e9f45245edd67dad7cef3ddb8452c5.tar.gz kernel-qcow2-linux-a51a50bd01e9f45245edd67dad7cef3ddb8452c5.tar.xz kernel-qcow2-linux-a51a50bd01e9f45245edd67dad7cef3ddb8452c5.zip |
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/media/video')
-rw-r--r-- | drivers/media/video/ivtv/ivtv-driver.c | 2 |
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, /* Register IRQ */ retval = request_irq(itv->dev->irq, ivtv_irq_handler, - SA_SHIRQ | SA_INTERRUPT, itv->name, (void *)itv); + IRQF_SHARED | IRQF_DISABLED, itv->name, (void *)itv); if (retval) { IVTV_ERR("Failed to register irq %d\n", retval); goto free_streams; |