1 /*
2 * u14-34f.h - used by the low-level driver for UltraStor 14F/34F
3 */
4 #ifndef _U14_34F_H
5 #define _U14_34F_H
6
7 int u14_34f_detect(Scsi_Host_Template *);
8 int u14_34f_queuecommand(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *));
9 int u14_34f_abort(Scsi_Cmnd *);
10 int u14_34f_reset(Scsi_Cmnd *);
11 int u14_34f_biosparam(Disk *, int, int *);
12
13 #define U14_34F_VERSION "2.01.00"
14
15 #define ULTRASTOR_14_34F { \
16 NULL, /* Ptr for modules */ \
17 NULL, /* usage count for modules */ \
18 "UltraStor 14F/34F rev. " U14_34F_VERSION " ", \
19 u14_34f_detect, \
20 NULL, /* Release */ \
21 NULL, \
22 NULL, \
23 u14_34f_queuecommand, \
24 u14_34f_abort, \
25 u14_34f_reset, \
26 NULL, \
27 u14_34f_biosparam, \
28 0, /* can_queue, reset by detect */ \
29 7, /* this_id, reset by detect */ \
30 0, /* sg_tablesize, reset by detect */ \
31 0, /* cmd_per_lun, reset by detect */ \
32 0, /* number of boards present */ \
33 1, /* unchecked isa dma, reset by detect */ \
34 ENABLE_CLUSTERING \
35 }
36 #endif