Commit c39e7eee authored by Sam Creasey's avatar Sam Creasey Committed by Linus Torvalds

[PATCH] Sun3 SCSI: Make sun3 scsi drivers compile/work again

Make sun3 scsi drivers compile/work again (though with way too many warnings...)

Tested on 3/50, 3/60.
Signed-off-by: default avatarSam Creasey <sammy@sammy.net>
Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent a3a79bd7
...@@ -1737,7 +1737,7 @@ config SCSI_NCR53C7xx_FAST ...@@ -1737,7 +1737,7 @@ config SCSI_NCR53C7xx_FAST
config SUN3_SCSI config SUN3_SCSI
tristate "Sun3 NCR5380 SCSI" tristate "Sun3 NCR5380 SCSI"
depends on SUN3 && SCSI && BROKEN depends on SUN3 && SCSI
select SCSI_SPI_ATTRS select SCSI_SPI_ATTRS
help help
This option will enable support for the OBIO (onboard io) NCR5380 This option will enable support for the OBIO (onboard io) NCR5380
......
...@@ -1271,7 +1271,7 @@ static irqreturn_t NCR5380_intr (int irq, void *dev_id) ...@@ -1271,7 +1271,7 @@ static irqreturn_t NCR5380_intr (int irq, void *dev_id)
NCR_PRINT(NDEBUG_INTR); NCR_PRINT(NDEBUG_INTR);
if ((NCR5380_read(STATUS_REG) & (SR_SEL|SR_IO)) == (SR_SEL|SR_IO)) { if ((NCR5380_read(STATUS_REG) & (SR_SEL|SR_IO)) == (SR_SEL|SR_IO)) {
done = 0; done = 0;
ENABLE_IRQ(); // ENABLE_IRQ();
INT_PRINTK("scsi%d: SEL interrupt\n", HOSTNO); INT_PRINTK("scsi%d: SEL interrupt\n", HOSTNO);
NCR5380_reselect(instance); NCR5380_reselect(instance);
(void) NCR5380_read(RESET_PARITY_INTERRUPT_REG); (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
...@@ -1304,7 +1304,7 @@ static irqreturn_t NCR5380_intr (int irq, void *dev_id) ...@@ -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); INT_PRINTK("scsi%d: PHASE MISM or EOP interrupt\n", HOSTNO);
NCR5380_dma_complete( instance ); NCR5380_dma_complete( instance );
done = 0; done = 0;
ENABLE_IRQ(); // ENABLE_IRQ();
} else } else
#endif /* REAL_DMA */ #endif /* REAL_DMA */
{ {
......
...@@ -75,9 +75,9 @@ ...@@ -75,9 +75,9 @@
#define REAL_DMA #define REAL_DMA
#include "scsi.h" #include "scsi.h"
#include "initio.h"
#include <scsi/scsi_host.h> #include <scsi/scsi_host.h>
#include "sun3_scsi.h" #include "sun3_scsi.h"
#include "NCR5380.h"
static void NCR5380_print(struct Scsi_Host *instance); static void NCR5380_print(struct Scsi_Host *instance);
......
...@@ -221,7 +221,7 @@ struct sun3_udc_regs { ...@@ -221,7 +221,7 @@ struct sun3_udc_regs {
* *
*/ */
#include "NCR5380.h"
#if NDEBUG & NDEBUG_ARBITRATION #if NDEBUG & NDEBUG_ARBITRATION
#define ARB_PRINTK(format, args...) \ #define ARB_PRINTK(format, args...) \
......
...@@ -41,9 +41,9 @@ ...@@ -41,9 +41,9 @@
#define REAL_DMA #define REAL_DMA
#include "scsi.h" #include "scsi.h"
#include "initio.h"
#include <scsi/scsi_host.h> #include <scsi/scsi_host.h>
#include "sun3_scsi.h" #include "sun3_scsi.h"
#include "NCR5380.h"
extern int sun3_map_test(unsigned long, char *); extern int sun3_map_test(unsigned long, char *);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment