diff options
Diffstat (limited to 'drivers/scsi/gdth_proc.c')
-rw-r--r-- | drivers/scsi/gdth_proc.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/drivers/scsi/gdth_proc.c b/drivers/scsi/gdth_proc.c index 1f8d9a53003b..cece6f2bdc2e 100644 --- a/drivers/scsi/gdth_proc.c +++ b/drivers/scsi/gdth_proc.c | |||
@@ -4,7 +4,6 @@ | |||
4 | 4 | ||
5 | #include <linux/completion.h> | 5 | #include <linux/completion.h> |
6 | 6 | ||
7 | #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0) | ||
8 | int gdth_proc_info(struct Scsi_Host *host, char *buffer,char **start,off_t offset,int length, | 7 | int gdth_proc_info(struct Scsi_Host *host, char *buffer,char **start,off_t offset,int length, |
9 | int inout) | 8 | int inout) |
10 | { | 9 | { |
@@ -21,32 +20,6 @@ int gdth_proc_info(struct Scsi_Host *host, char *buffer,char **start,off_t offse | |||
21 | else | 20 | else |
22 | return(gdth_get_info(buffer,start,offset,length,host,hanum,busnum)); | 21 | return(gdth_get_info(buffer,start,offset,length,host,hanum,busnum)); |
23 | } | 22 | } |
24 | #else | ||
25 | int gdth_proc_info(char *buffer,char **start,off_t offset,int length,int hostno, | ||
26 | int inout) | ||
27 | { | ||
28 | int hanum,busnum,i; | ||
29 | |||
30 | TRACE2(("gdth_proc_info() length %d offs %d inout %d\n", | ||
31 | length,(int)offset,inout)); | ||
32 | |||
33 | for (i = 0; i < gdth_ctr_vcount; ++i) { | ||
34 | if (gdth_ctr_vtab[i]->host_no == hostno) | ||
35 | break; | ||
36 | } | ||
37 | if (i == gdth_ctr_vcount) | ||
38 | return(-EINVAL); | ||
39 | |||
40 | hanum = NUMDATA(gdth_ctr_vtab[i])->hanum; | ||
41 | busnum= NUMDATA(gdth_ctr_vtab[i])->busnum; | ||
42 | |||
43 | if (inout) | ||
44 | return(gdth_set_info(buffer,length,gdth_ctr_vtab[i],hanum,busnum)); | ||
45 | else | ||
46 | return(gdth_get_info(buffer,start,offset,length, | ||
47 | gdth_ctr_vtab[i],hanum,busnum)); | ||
48 | } | ||
49 | #endif | ||
50 | 23 | ||
51 | static int gdth_set_info(char *buffer,int length,struct Scsi_Host *host, | 24 | static int gdth_set_info(char *buffer,int length,struct Scsi_Host *host, |
52 | int hanum,int busnum) | 25 | int hanum,int busnum) |