diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2006-07-01 22:29:32 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-07-02 16:58:49 -0400 |
commit | 69ab3912d1b4dbf27ea1a383cb5731251fc0e109 (patch) | |
tree | d0e68c828d8f49483d4bfaccbe4d98c1b339ee94 /drivers/block/cpqarray.c | |
parent | 3cca53b02a5bab0f407b1add2f84c22c20243a79 (diff) |
[PATCH] irq-flags: drivers/block Use the new IRQF_ constants
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: Jens Axboe <axboe@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/block/cpqarray.c')
-rw-r--r-- | drivers/block/cpqarray.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/cpqarray.c b/drivers/block/cpqarray.c index bfd245df0a8c..757f42dd8e86 100644 --- a/drivers/block/cpqarray.c +++ b/drivers/block/cpqarray.c | |||
@@ -408,7 +408,7 @@ static int __init cpqarray_register_ctlr( int i, struct pci_dev *pdev) | |||
408 | } | 408 | } |
409 | hba[i]->access.set_intr_mask(hba[i], 0); | 409 | hba[i]->access.set_intr_mask(hba[i], 0); |
410 | if (request_irq(hba[i]->intr, do_ida_intr, | 410 | if (request_irq(hba[i]->intr, do_ida_intr, |
411 | SA_INTERRUPT|SA_SHIRQ, hba[i]->devname, hba[i])) | 411 | IRQF_DISABLED|IRQF_SHARED, hba[i]->devname, hba[i])) |
412 | { | 412 | { |
413 | printk(KERN_ERR "cpqarray: Unable to get irq %d for %s\n", | 413 | printk(KERN_ERR "cpqarray: Unable to get irq %d for %s\n", |
414 | hba[i]->intr, hba[i]->devname); | 414 | hba[i]->intr, hba[i]->devname); |