Commit 11741f8a authored by Andrew Morton's avatar Andrew Morton Committed by James Bottomley

[PATCH] Fix dpt_i2o

From: Go Taniguchi <go@turbolinux.co.jp>

Make it build (and work) again.
parent 1b51f242
...@@ -363,7 +363,7 @@ source "drivers/scsi/aic7xxx/Kconfig.aic79xx" ...@@ -363,7 +363,7 @@ source "drivers/scsi/aic7xxx/Kconfig.aic79xx"
# All the I2O code and drivers do not seem to be 64bit safe. # All the I2O code and drivers do not seem to be 64bit safe.
config SCSI_DPT_I2O config SCSI_DPT_I2O
tristate "Adaptec I2O RAID support " tristate "Adaptec I2O RAID support "
depends on !64BIT && SCSI && BROKEN depends on !64BIT && SCSI
help help
This driver supports all of Adaptec's I2O based RAID controllers as This driver supports all of Adaptec's I2O based RAID controllers as
well as the DPT SmartRaid V cards. This is an Adaptec maintained well as the DPT SmartRaid V cards. This is an Adaptec maintained
......
This diff is collapsed.
...@@ -65,7 +65,7 @@ static int adpt_device_reset(Scsi_Cmnd* cmd); ...@@ -65,7 +65,7 @@ static int adpt_device_reset(Scsi_Cmnd* cmd);
#include "dpt/dpti_i2o.h" #include "dpt/dpti_i2o.h"
#include "dpt/dpti_ioctl.h" #include "dpt/dpti_ioctl.h"
#define DPT_I2O_VERSION "2.4 Build 5" #define DPT_I2O_VERSION "2.4 Build 5go"
#define DPT_VERSION 2 #define DPT_VERSION 2
#define DPT_REVISION '4' #define DPT_REVISION '4'
#define DPT_SUBREVISION '5' #define DPT_SUBREVISION '5'
...@@ -272,7 +272,7 @@ struct sg_simple_element { ...@@ -272,7 +272,7 @@ struct sg_simple_element {
static void adpt_i2o_sys_shutdown(void); static void adpt_i2o_sys_shutdown(void);
static int adpt_init(void); static int adpt_init(void);
static int adpt_i2o_build_sys_table(void); static int adpt_i2o_build_sys_table(void);
static void adpt_isr(int irq, void *dev_id, struct pt_regs *regs); static irqreturn_t adpt_isr(int irq, void *dev_id, struct pt_regs *regs);
#ifdef REBOOT_NOTIFIER #ifdef REBOOT_NOTIFIER
static int adpt_reboot_event(struct notifier_block *n, ulong code, void *p); static int adpt_reboot_event(struct notifier_block *n, ulong code, void *p);
#endif #endif
......
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