I have recently had a problem with the fdomain driver initialisation and
have found the problem to be the way in which it requests the irq. Here is
my patch that has so far work ok.

--- linux/drivers/scsi/fdomain.c        Thu Jul  5 13:35:41 2001
+++ fdomain.c   Thu Jun 28 08:08:03 2001
@@ -981,8 +981,8 @@
    } else {
       /* Register the IRQ with the kernel */

-      retcode = request_irq( interrupt_level,
-                            do_fdomain_16x0_intr, 0, "fdomain", NULL);
+      retcode = request_irq( shpnt->irq,
+                            do_fdomain_16x0_intr, SA_SHIRQ, "fdomain", shpnt);

       if (retcode < 0) {
         if (retcode == -EINVAL) {

Hope this is correct.

Regards

Grant Fribbens

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to