[PATCH] irq-flags: IA64: 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: "Luck, Tony" <tony.luck@intel.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:

committed by
Linus Torvalds

parent
4879d77c4c
commit
121a4226e8
@@ -178,7 +178,7 @@ void hubiio_crb_error_handler(struct hubdev_info *hubdev_info)
|
||||
*/
|
||||
void hub_error_init(struct hubdev_info *hubdev_info)
|
||||
{
|
||||
if (request_irq(SGI_II_ERROR, (void *)hub_eint_handler, SA_SHIRQ,
|
||||
if (request_irq(SGI_II_ERROR, (void *)hub_eint_handler, IRQF_SHARED,
|
||||
"SN_hub_error", (void *)hubdev_info))
|
||||
printk("hub_error_init: Failed to request_irq for 0x%p\n",
|
||||
hubdev_info);
|
||||
@@ -196,7 +196,7 @@ void hub_error_init(struct hubdev_info *hubdev_info)
|
||||
void ice_error_init(struct hubdev_info *hubdev_info)
|
||||
{
|
||||
if (request_irq
|
||||
(SGI_TIO_ERROR, (void *)hub_eint_handler, SA_SHIRQ, "SN_TIO_error",
|
||||
(SGI_TIO_ERROR, (void *)hub_eint_handler, IRQF_SHARED, "SN_TIO_error",
|
||||
(void *)hubdev_info))
|
||||
printk("ice_error_init: request_irq() error hubdev_info 0x%p\n",
|
||||
hubdev_info);
|
||||
|
Reference in New Issue
Block a user