projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4b0e51d
)
V4L/DVB (5377): Replace SA_* with IRQF_*
author
Hans Verkuil
<hverkuil@xs4all.nl>
Sat, 3 Mar 2007 11:28:54 +0000
(08:28 -0300)
committer
Mauro Carvalho Chehab
<mchehab@infradead.org>
Fri, 27 Apr 2007 18:44:12 +0000
(15:44 -0300)
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>
drivers/media/video/ivtv/ivtv-driver.c
patch
|
blob
|
history
diff --git
a/drivers/media/video/ivtv/ivtv-driver.c
b/drivers/media/video/ivtv/ivtv-driver.c
index 8d3876588b88edaf248811469f60c352e9a31650..9a8dae811ddfb4b71363985d4ec43c8eb63e83af 100644
(file)
--- 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;