diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1998-03-17 22:05:47 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1998-03-17 22:05:47 +0000 |
commit | 27cfca1ec98e91261b1a5355d10a8996464b63af (patch) | |
tree | 8e895a53e372fa682b4c0a585b9377d67ed70d0e /drivers/scsi/g_NCR5380.h | |
parent | 6a76fb7214c477ccf6582bd79c5b4ccc4f9c41b1 (diff) |
Look Ma' what I found on my harddisk ...
o New faster syscalls for 2.1.x, too
o Upgrade to 2.1.89.
Don't try to run this. It's flaky as hell. But feel free to debug ...
Diffstat (limited to 'drivers/scsi/g_NCR5380.h')
-rw-r--r-- | drivers/scsi/g_NCR5380.h | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/drivers/scsi/g_NCR5380.h b/drivers/scsi/g_NCR5380.h index 2730723eb..000449277 100644 --- a/drivers/scsi/g_NCR5380.h +++ b/drivers/scsi/g_NCR5380.h @@ -72,16 +72,21 @@ int generic_NCR5380_proc_info(char* buffer, char** start, off_t offset, int leng #if defined(HOSTS_C) || defined(MODULE) -#define GENERIC_NCR5380 {NULL, NULL, NULL, \ - generic_NCR5380_proc_info, \ - "Generic NCR5380/NCR53C400 Scsi Driver", \ - generic_NCR5380_detect, generic_NCR5380_release_resources, \ - (void *)generic_NCR5380_info, NULL, \ - generic_NCR5380_queue_command, generic_NCR5380_abort, \ - generic_NCR5380_reset, NULL, \ - NCR5380_BIOSPARAM, \ - /* can queue */ CAN_QUEUE, /* id */ 7, SG_ALL, \ - /* cmd per lun */ CMD_PER_LUN , 0, 0, DISABLE_CLUSTERING} +#define GENERIC_NCR5380 { \ + proc_info: generic_NCR5380_proc_info, \ + name: "Generic NCR5380/NCR53C400 Scsi Driver", \ + detect: generic_NCR5380_detect, \ + release: generic_NCR5380_release_resources, \ + info: (void *)generic_NCR5380_info, \ + queuecommand: generic_NCR5380_queue_command, \ + abort: generic_NCR5380_abort, \ + reset: generic_NCR5380_reset, \ + bios_param: NCR5380_BIOSPARAM, \ + can_queue: CAN_QUEUE, \ + this_id: 7, \ + sg_tablesize: SG_ALL, \ + cmd_per_lun: CMD_PER_LUN , \ + use_clustering: DISABLE_CLUSTERING} #endif |