[PATCH] irq-flags: scsi: Use the new IRQF_ constants
[deliverable/linux.git] / drivers / scsi / aic7xxx_old.c
index 5dba1c63122e24c18813e35eb85168835ab993a4..3f85b5e978f1a9c2f9f251a32a847f820467e652 100644 (file)
@@ -8322,11 +8322,11 @@ aic7xxx_register(struct scsi_host_template *template, struct aic7xxx_host *p,
   }
   else
   {
-    result = (request_irq(p->irq, do_aic7xxx_isr, SA_SHIRQ,
+    result = (request_irq(p->irq, do_aic7xxx_isr, IRQF_SHARED,
               "aic7xxx", p));
     if (result < 0)
     {
-      result = (request_irq(p->irq, do_aic7xxx_isr, SA_INTERRUPT | SA_SHIRQ,
+      result = (request_irq(p->irq, do_aic7xxx_isr, IRQF_DISABLED | IRQF_SHARED,
               "aic7xxx", p));
     }
   }
This page took 0.025464 seconds and 5 git commands to generate.