diff options
Diffstat (limited to 'drivers/scsi/amiga7xx.h')
-rw-r--r-- | drivers/scsi/amiga7xx.h | 32 |
1 files changed, 11 insertions, 21 deletions
diff --git a/drivers/scsi/amiga7xx.h b/drivers/scsi/amiga7xx.h index ca85dca7b..09317d376 100644 --- a/drivers/scsi/amiga7xx.h +++ b/drivers/scsi/amiga7xx.h @@ -27,26 +27,16 @@ void NCR53c7x0_intr(int irq, void *dev_id, struct pt_regs * regs); extern struct proc_dir_entry proc_scsi_amiga7xx; -#define AMIGA7XX_SCSI {/* next */ NULL, \ - /* usage_count */ NULL, \ - /* proc_dir_entry */ NULL, \ - /* proc_info */ NULL, \ - /* name */ "Amiga NCR53c710 SCSI", \ - /* detect */ amiga7xx_detect, \ - /* release */ NULL, \ - /* info */ NULL, \ - /* command */ NULL, \ - /* queuecommand */ NCR53c7xx_queue_command, \ - /* abort */ NCR53c7xx_abort, \ - /* reset */ NCR53c7xx_reset, \ - /* slave_attach */ NULL, \ - /* bios_param */ scsicam_bios_param, \ - /* can_queue */ 24, \ - /* this_id */ 7, \ - /* sg_tablesize */ 127, \ - /* cmd_per_lun */ 3, \ - /* present */ 0, \ - /* unchecked_isa_dma */ 0, \ - /* use_clustering */ DISABLE_CLUSTERING } +#define AMIGA7XX_SCSI {name: "Amiga NCR53c710 SCSI", \ + detect: amiga7xx_detect, \ + queuecommand: NCR53c7xx_queue_command, \ + abort: NCR53c7xx_abort, \ + reset: NCR53c7xx_reset, \ + bios_param: scsicam_bios_param, \ + can_queue: 24, \ + this_id: 7, \ + sg_tablesize: 127, \ + cmd_per_lun: 3, \ + use_clustering: DISABLE_CLUSTERING } #endif #endif /* AMIGA7XX_H */ |