diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2011-12-11 04:04:51 -0500 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2011-12-15 01:57:43 -0500 |
commit | dddaaf793d73f1e3dc931b2040f1578b1bdf0ece (patch) | |
tree | 28104fb34387f6f11a31e5b56e1f1003e4138c38 /drivers/scsi | |
parent | 7b12859ae4776d868ea732424a452826d9ee03df (diff) |
[SCSI] mac_scsi: Remove obsolete IRQ_FLG_* users
The m68k core irq code stopped honoring these flags during the irq
restructuring in 2006.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/mac_scsi.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/scsi/mac_scsi.c b/drivers/scsi/mac_scsi.c index af3a6af97cc7..ea2bde206f7f 100644 --- a/drivers/scsi/mac_scsi.c +++ b/drivers/scsi/mac_scsi.c | |||
@@ -291,8 +291,7 @@ int __init macscsi_detect(struct scsi_host_template * tpnt) | |||
291 | ((struct NCR5380_hostdata *)instance->hostdata)->ctrl = 0; | 291 | ((struct NCR5380_hostdata *)instance->hostdata)->ctrl = 0; |
292 | 292 | ||
293 | if (instance->irq != SCSI_IRQ_NONE) | 293 | if (instance->irq != SCSI_IRQ_NONE) |
294 | if (request_irq(instance->irq, NCR5380_intr, IRQ_FLG_SLOW, | 294 | if (request_irq(instance->irq, NCR5380_intr, 0, "ncr5380", instance)) { |
295 | "ncr5380", instance)) { | ||
296 | printk(KERN_WARNING "scsi%d: IRQ%d not free, interrupts disabled\n", | 295 | printk(KERN_WARNING "scsi%d: IRQ%d not free, interrupts disabled\n", |
297 | instance->host_no, instance->irq); | 296 | instance->host_no, instance->irq); |
298 | instance->irq = SCSI_IRQ_NONE; | 297 | instance->irq = SCSI_IRQ_NONE; |