1 #ifndef _QLOGICFAS_H
2 #define _QLOGICFAS_H
3
4 int qlogicfas_detect(Scsi_Host_Template * );
5 const char * qlogicfas_info(struct Scsi_Host *);
6 int qlogicfas_command(Scsi_Cmnd *);
7 int qlogicfas_queuecommand(Scsi_Cmnd *, void (* done)(Scsi_Cmnd *));
8 int qlogicfas_abort(Scsi_Cmnd *);
9 int qlogicfas_reset(Scsi_Cmnd *, unsigned int);
10 int qlogicfas_biosparam(Disk *, kdev_t, int[]);
11
12 #ifndef NULL
13 #define NULL (0)
14 #endif
15
16 #define QLOGICFAS { \
17 detect: qlogicfas_detect, \
18 info: qlogicfas_info, \
19 command: qlogicfas_command, \
20 queuecommand: qlogicfas_queuecommand, \
21 abort: qlogicfas_abort, \
22 reset: qlogicfas_reset, \
23 bios_param: qlogicfas_biosparam, \
24 can_queue: 0, \
25 this_id: -1, \
26 sg_tablesize: SG_ALL, \
27 cmd_per_lun: 1, \
28 use_clustering: DISABLE_CLUSTERING \
29 }
30
31 #endif /* _QLOGICFAS_H */
32
33
34
35
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.