diff options
author | Jeff Garzik <jeff@garzik.org> | 2007-10-02 16:54:28 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.localdomain> | 2007-10-12 14:55:29 -0400 |
commit | 8d7a5da4fc95cb6210cd66e7c886161e10a1307f (patch) | |
tree | dba0820e485b1b77886578eb3e49f7e92d1b53ef /drivers/scsi/gdth_proc.c | |
parent | 8514ef27ee462747454f26a77982f670d9c3c391 (diff) |
[SCSI] gdth: Remove 2.4.x support, in-kernel changelog
* Remove in-source changelog. It's archived permanently in git and
various kernel archives, and changelogs should exist purely in git.
* Remove 2.4.x kernel support. It is an active obstacle to
modernizing this driver, at this point. This includes killing
gdth_kcompat.h which is 100% redundant in modern kernels.
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
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) |