Commit d010bb10 authored by James Bottomley's avatar James Bottomley

advansys: add warning and convert #includes

The DMA conversion of the advansys driver is still
broken.  Add a #warning to the driver and a comment
above it explaining what needs to be done.

Mark the driver as BROKEN because of the warning

Also remove the #include "scsi.h"
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent eb1b82ea
...@@ -374,7 +374,7 @@ config SCSI_DPT_I2O ...@@ -374,7 +374,7 @@ config SCSI_DPT_I2O
config SCSI_ADVANSYS config SCSI_ADVANSYS
tristate "AdvanSys SCSI support" tristate "AdvanSys SCSI support"
depends on (ISA || EISA || PCI) && SCSI depends on (ISA || EISA || PCI) && SCSI && BROKEN
help help
This is a driver for all SCSI host adapters manufactured by This is a driver for all SCSI host adapters manufactured by
AdvanSys. It is documented in the kernel source in AdvanSys. It is documented in the kernel source in
......
This diff is collapsed.
...@@ -47,14 +47,14 @@ ...@@ -47,14 +47,14 @@
/* /*
* Scsi_Host_Template function prototypes. * Scsi_Host_Template function prototypes.
*/ */
int advansys_detect(Scsi_Host_Template *); int advansys_detect(struct scsi_host_template *);
int advansys_release(struct Scsi_Host *); int advansys_release(struct Scsi_Host *);
const char *advansys_info(struct Scsi_Host *); const char *advansys_info(struct Scsi_Host *);
int advansys_queuecommand(Scsi_Cmnd *, void (* done)(Scsi_Cmnd *)); int advansys_queuecommand(struct scsi_cmnd *, void (* done)(struct scsi_cmnd *));
int advansys_reset(Scsi_Cmnd *); int advansys_reset(struct scsi_cmnd *);
int advansys_biosparam(struct scsi_device *, struct block_device *, int advansys_biosparam(struct scsi_device *, struct block_device *,
sector_t, int[]); sector_t, int[]);
static int advansys_slave_configure(Scsi_Device *); static int advansys_slave_configure(struct scsi_device *);
/* init/main.c setup function */ /* init/main.c setup function */
void advansys_setup(char *, int *); void advansys_setup(char *, int *);
......
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