diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2006-07-01 19:29:40 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-07-02 13:58:52 -0700 |
commit | 8c56e7214effd2fa50359e58832ad9c3eb51a3de (patch) | |
tree | e7ceab371fbd98421f503e9f773f1045e1b6b0b1 /drivers/parisc/superio.c | |
parent | 1fb9df5d3069064c037c81c0ab8bf783ffa5e373 (diff) | |
download | kernel-crypto-8c56e7214effd2fa50359e58832ad9c3eb51a3de.tar.gz kernel-crypto-8c56e7214effd2fa50359e58832ad9c3eb51a3de.tar.xz kernel-crypto-8c56e7214effd2fa50359e58832ad9c3eb51a3de.zip |
[PATCH] irq-flags: PARISC: Use the new IRQF_ constants
Use the new IRQF_ constants and remove the SA_INTERRUPT define
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>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/parisc/superio.c')
-rw-r--r-- | drivers/parisc/superio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/parisc/superio.c b/drivers/parisc/superio.c index a988dc7a9ab..4ee26a6d9e2 100644 --- a/drivers/parisc/superio.c +++ b/drivers/parisc/superio.c @@ -271,7 +271,7 @@ superio_init(struct pci_dev *pcidev) else printk(KERN_ERR PFX "USB regulator not initialized!\n"); - if (request_irq(pdev->irq, superio_interrupt, SA_INTERRUPT, + if (request_irq(pdev->irq, superio_interrupt, IRQF_DISABLED, SUPERIO, (void *)sio)) { printk(KERN_ERR PFX "could not get irq\n"); |