[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>

authored by

Thomas Gleixner and committed by
Linus Torvalds
8c56e721 1fb9df5d

+2 -2
+1 -1
drivers/parisc/eisa.c
··· 340 340 } 341 341 pcibios_register_hba(&eisa_dev.hba); 342 342 343 - result = request_irq(dev->irq, eisa_irq, SA_SHIRQ, "EISA", &eisa_dev); 343 + result = request_irq(dev->irq, eisa_irq, IRQF_SHARED, "EISA", &eisa_dev); 344 344 if (result) { 345 345 printk(KERN_ERR "EISA: request_irq failed!\n"); 346 346 return result;
+1 -1
drivers/parisc/superio.c
··· 271 271 else 272 272 printk(KERN_ERR PFX "USB regulator not initialized!\n"); 273 273 274 - if (request_irq(pdev->irq, superio_interrupt, SA_INTERRUPT, 274 + if (request_irq(pdev->irq, superio_interrupt, IRQF_DISABLED, 275 275 SUPERIO, (void *)sio)) { 276 276 277 277 printk(KERN_ERR PFX "could not get irq\n");