1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25#ifndef _FDOMAIN_H
26#define _FDOMAIN_H
27
28int fdomain_16x0_detect( Scsi_Host_Template * );
29int fdomain_16x0_command( Scsi_Cmnd * );
30int fdomain_16x0_abort( Scsi_Cmnd * );
31const char *fdomain_16x0_info( struct Scsi_Host * );
32int fdomain_16x0_reset( Scsi_Cmnd *, unsigned int );
33int fdomain_16x0_queue( Scsi_Cmnd *, void (*done)(Scsi_Cmnd *) );
34int fdomain_16x0_biosparam( Disk *, kdev_t, int * );
35int fdomain_16x0_proc_info( char *buffer, char **start, off_t offset,
36 int length, int hostno, int inout );
37int fdomain_16x0_release( struct Scsi_Host *shpnt );
38
39#define FDOMAIN_16X0 { proc_info: fdomain_16x0_proc_info, \
40 detect: fdomain_16x0_detect, \
41 info: fdomain_16x0_info, \
42 command: fdomain_16x0_command, \
43 queuecommand: fdomain_16x0_queue, \
44 abort: fdomain_16x0_abort, \
45 reset: fdomain_16x0_reset, \
46 bios_param: fdomain_16x0_biosparam, \
47 release: fdomain_16x0_release, \
48 can_queue: 1, \
49 this_id: 6, \
50 sg_tablesize: 64, \
51 cmd_per_lun: 1, \
52 use_clustering: DISABLE_CLUSTERING }
53#endif
54