2 * seagate.h Copyright (C) 1992 Drew Eckhardt
3 * low level scsi driver header for ST01/ST02 by
15 int seagate_st0x_detect(Scsi_Host_Template
*);
16 int seagate_st0x_command(Scsi_Cmnd
*);
17 int seagate_st0x_queue_command(Scsi_Cmnd
*, void (*done
)(Scsi_Cmnd
*));
19 int seagate_st0x_abort(Scsi_Cmnd
*);
20 const char *seagate_st0x_info(struct Scsi_Host
*);
21 int seagate_st0x_reset(Scsi_Cmnd
*, unsigned int);
23 #include <linux/kdev_t.h>
24 int seagate_st0x_biosparam(Disk
*, kdev_t
, int*);
26 #define SEAGATE_ST0X { detect: seagate_st0x_detect, \
27 info: seagate_st0x_info, \
28 command: seagate_st0x_command, \
29 queuecommand: seagate_st0x_queue_command, \
30 abort: seagate_st0x_abort, \
31 reset: seagate_st0x_reset, \
32 bios_param: seagate_st0x_biosparam, \
35 sg_tablesize: SG_ALL, \
37 use_clustering: DISABLE_CLUSTERING}
40 #endif /* _SEAGATE_H */