diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-07-19 12:15:49 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-07-19 12:15:49 -0300 |
commit | d5a7f418a8998e7989df1f052eced60c9e53302f (patch) | |
tree | 2f06a93ddbb7ed1956a004e9164e6e1a3162f862 /linux/drivers/media/video/cx88/cx88-video.c | |
parent | 2ecefe04ad64a15c713e53b76588c91bb8715a61 (diff) | |
download | mediapointer-dvb-s2-d5a7f418a8998e7989df1f052eced60c9e53302f.tar.gz mediapointer-dvb-s2-d5a7f418a8998e7989df1f052eced60c9e53302f.tar.bz2 |
[PATCH] irq-flags: media: Use the new IRQF_ constants
From: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/video/cx88/cx88-video.c')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-video.c b/linux/drivers/media/video/cx88/cx88-video.c index 48c67d656..f0e5df3c2 100644 --- a/linux/drivers/media/video/cx88/cx88-video.c +++ b/linux/drivers/media/video/cx88/cx88-video.c @@ -2211,7 +2211,7 @@ static int __devinit cx8800_initdev(struct pci_dev *pci_dev, /* get irq */ err = request_irq(pci_dev->irq, cx8800_irq, - SA_SHIRQ | SA_INTERRUPT, core->name, dev); + IRQF_SHARED | IRQF_DISABLED, core->name, dev); if (err < 0) { printk(KERN_ERR "%s: can't get IRQ %d\n", core->name,pci_dev->irq); |