]> Pileus Git - ~andy/linux/commitdiff
[PATCH] Sun3 SCSI: Make sun3 scsi drivers compile/work again
authorSam Creasey <sammy@sammy.net>
Sat, 9 Dec 2006 09:37:05 +0000 (10:37 +0100)
committerLinus Torvalds <torvalds@woody.osdl.org>
Sat, 9 Dec 2006 17:41:18 +0000 (09:41 -0800)
Make sun3 scsi drivers compile/work again (though with way too many warnings...)

Tested on 3/50, 3/60.

Signed-off-by: Sam Creasey <sammy@sammy.net>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
drivers/scsi/Kconfig
drivers/scsi/sun3_NCR5380.c
drivers/scsi/sun3_scsi.c
drivers/scsi/sun3_scsi.h
drivers/scsi/sun3_scsi_vme.c

index 69569096dae537f164d52df669510de68bf866a8..60f5827271851e064d1ce807dd2b1848f4950ab0 100644 (file)
@@ -1737,7 +1737,7 @@ config SCSI_NCR53C7xx_FAST
 
 config SUN3_SCSI
        tristate "Sun3 NCR5380 SCSI"
-       depends on SUN3 && SCSI && BROKEN
+       depends on SUN3 && SCSI
        select SCSI_SPI_ATTRS
        help
          This option will enable support for the OBIO (onboard io) NCR5380
index 3b3f3050a877f0e221ee49fb649b45cc20b9acbc..43f5b6aa7dc4a502ff82ea4487572aa36611c76a 100644 (file)
@@ -1271,7 +1271,7 @@ static irqreturn_t NCR5380_intr (int irq, void *dev_id)
        NCR_PRINT(NDEBUG_INTR);
        if ((NCR5380_read(STATUS_REG) & (SR_SEL|SR_IO)) == (SR_SEL|SR_IO)) {
            done = 0;
-           ENABLE_IRQ();
+//         ENABLE_IRQ();
            INT_PRINTK("scsi%d: SEL interrupt\n", HOSTNO);
            NCR5380_reselect(instance);
            (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
@@ -1304,7 +1304,7 @@ static irqreturn_t NCR5380_intr (int irq, void *dev_id)
                INT_PRINTK("scsi%d: PHASE MISM or EOP interrupt\n", HOSTNO);
                NCR5380_dma_complete( instance );
                done = 0;
-               ENABLE_IRQ();
+//             ENABLE_IRQ();
            } else
 #endif /* REAL_DMA */
            {
index d56d85dd9ba0ed60c943e8bd99956a22c06418ca..69ee3e4a820e0dfc1a38b7b2537af29e84fe00bd 100644 (file)
@@ -75,9 +75,9 @@
 #define REAL_DMA
 
 #include "scsi.h"
+#include "initio.h"
 #include <scsi/scsi_host.h>
 #include "sun3_scsi.h"
-#include "NCR5380.h"
 
 static void NCR5380_print(struct Scsi_Host *instance);
 
index a1103b3e2034444769b608ad95ff7683e7978c5b..b29a9d661ca41740b7e7a9693f4a04fb806ec64a 100644 (file)
@@ -221,7 +221,7 @@ struct sun3_udc_regs {
  *
  */
 
-
+#include "NCR5380.h"
 
 #if NDEBUG & NDEBUG_ARBITRATION
 #define ARB_PRINTK(format, args...) \
index 92def310a84c05eeaf3a317c99468799fc65bb17..bb0c9fd99e68646617e94fb6aa8cdffc91d7bedd 100644 (file)
@@ -41,9 +41,9 @@
 #define REAL_DMA
 
 #include "scsi.h"
+#include "initio.h"
 #include <scsi/scsi_host.h>
 #include "sun3_scsi.h"
-#include "NCR5380.h"
 
 extern int sun3_map_test(unsigned long, char *);