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
28 int fdomain_16x0_detect( Scsi_Host_Template * );
29 int fdomain_16x0_command( Scsi_Cmnd * );
30 int fdomain_16x0_abort( Scsi_Cmnd * );
31 const char *fdomain_16x0_info( struct Scsi_Host * );
32 int fdomain_16x0_reset( Scsi_Cmnd * );
33 int fdomain_16x0_queue( Scsi_Cmnd *, void (*done)(Scsi_Cmnd *) );
34 int fdomain_16x0_biosparam( Disk *, kdev_t, int * );
35 int fdomain_16x0_proc_info( char *buffer, char **start, off_t offset,
36 int length, int hostno, int inout );
37
38 extern struct proc_dir_entry proc_scsi_fdomain;
39
40 #define FDOMAIN_16X0 { NULL, \
41 NULL, \
42 NULL, \
43 fdomain_16x0_proc_info, \
44 NULL, \
45 fdomain_16x0_detect, \
46 NULL, \
47 fdomain_16x0_info, \
48 fdomain_16x0_command, \
49 fdomain_16x0_queue, \
50 fdomain_16x0_abort, \
51 fdomain_16x0_reset, \
52 NULL, \
53 fdomain_16x0_biosparam, \
54 1, \
55 6, \
56 64, \
57 1, \
58 0, \
59 0, \
60 DISABLE_CLUSTERING }
61 #endif