1 /*
2 * u14-34f.h - used by low-level scsi 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 const char *u14_34f_info(void);
9 int u14_34f_queuecommand(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *));
10 int u14_34f_abort(Scsi_Cmnd *);
11 int u14_34f_reset(Scsi_Cmnd *);
12 int u14_34f_biosparam(Disk *, int, int *);
13
14 #define U14_34F_VERSION "1.09.01"
15
16 #define ULTRASTOR_14_34F { \
17 NULL, \
18 "UltraStor 14F/34F rev. " U14_34F_VERSION " by " \
19 "Dario_Ballabio@milano.europe.dg.com.",\
20 u14_34f_detect, \
21 NULL, \
22 u14_34f_info, \
23 NULL, \
24 u14_34f_queuecommand, \
25 u14_34f_abort, \
26 u14_34f_reset, \
27 NULL, \
28 u14_34f_biosparam, \
29 0, /* can_queue, reset by detect */ \
30 7, /* this_id, reset by detect */ \
31 0, /* sg_tablesize, reset by detect */ \
32 0, /* cmd_per_lun, reset by detect */ \
33 0, /* number of boards present */ \
34 0, /* unchecked isa dma, reset by detect */ \
35 0, /* use_clustering, reset by detect */ \
36 }
37 #endif