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/bt8xx/bttv-driver.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/bt8xx/bttv-driver.c')
-rw-r--r-- | linux/drivers/media/video/bt8xx/bttv-driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/bt8xx/bttv-driver.c b/linux/drivers/media/video/bt8xx/bttv-driver.c index a43764dea..62fce21ba 100644 --- a/linux/drivers/media/video/bt8xx/bttv-driver.c +++ b/linux/drivers/media/video/bt8xx/bttv-driver.c @@ -4088,7 +4088,7 @@ static int __devinit bttv_probe(struct pci_dev *dev, /* disable irqs, register irq handler */ btwrite(0, BT848_INT_MASK); result = request_irq(btv->c.pci->irq, bttv_irq, - SA_SHIRQ | SA_INTERRUPT,btv->c.name,(void *)btv); + IRQF_SHARED | IRQF_DISABLED,btv->c.name,(void *)btv); if (result < 0) { printk(KERN_ERR "bttv%d: can't get IRQ %d\n", bttv_num,btv->c.pci->irq); |