diff options
author | Christoph Hellwig <hch@lst.de> | 2005-10-31 12:32:08 -0500 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2005-11-09 15:48:20 -0500 |
commit | f64a181d898e0518d5ae90c4870069510de977e1 (patch) | |
tree | f7ef817d9bd1804e59220f70d97c2ae6f5f7a2f5 /drivers/scsi/gdth_proc.c | |
parent | 0a04137e75204e370dbdf2376033853eea126de7 (diff) |
[SCSI] remove Scsi_Device typedef
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 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/scsi/gdth_proc.c b/drivers/scsi/gdth_proc.c index 1bd02f8d1e6a..5e8657f9cdf6 100644 --- a/drivers/scsi/gdth_proc.c +++ b/drivers/scsi/gdth_proc.c | |||
@@ -54,10 +54,10 @@ static int gdth_set_info(char *buffer,int length,struct Scsi_Host *host, | |||
54 | int ret_val = -EINVAL; | 54 | int ret_val = -EINVAL; |
55 | #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0) | 55 | #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0) |
56 | Scsi_Request *scp; | 56 | Scsi_Request *scp; |
57 | Scsi_Device *sdev; | 57 | struct scsi_device *sdev; |
58 | #else | 58 | #else |
59 | Scsi_Cmnd *scp; | 59 | Scsi_Cmnd *scp; |
60 | Scsi_Device *sdev; | 60 | struct scsi_device *sdev; |
61 | #endif | 61 | #endif |
62 | TRACE2(("gdth_set_info() ha %d bus %d\n",hanum,busnum)); | 62 | TRACE2(("gdth_set_info() ha %d bus %d\n",hanum,busnum)); |
63 | 63 | ||
@@ -232,10 +232,10 @@ static int gdth_get_info(char *buffer,char **start,off_t offset,int length, | |||
232 | gdth_evt_str *estr; | 232 | gdth_evt_str *estr; |
233 | #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0) | 233 | #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0) |
234 | Scsi_Request *scp; | 234 | Scsi_Request *scp; |
235 | Scsi_Device *sdev; | 235 | struct scsi_device *sdev; |
236 | #else | 236 | #else |
237 | Scsi_Cmnd *scp; | 237 | Scsi_Cmnd *scp; |
238 | Scsi_Device *sdev; | 238 | struct scsi_device *sdev; |
239 | #endif | 239 | #endif |
240 | char hrec[161]; | 240 | char hrec[161]; |
241 | struct timeval tv; | 241 | struct timeval tv; |
@@ -275,7 +275,7 @@ static int gdth_get_info(char *buffer,char **start,off_t offset,int length, | |||
275 | scp->cmd_len = 12; | 275 | scp->cmd_len = 12; |
276 | scp->use_sg = 0; | 276 | scp->use_sg = 0; |
277 | #else | 277 | #else |
278 | memset(&sdev,0,sizeof(Scsi_Device)); | 278 | memset(&sdev,0,sizeof(struct scsi_device)); |
279 | memset(&scp, 0,sizeof(Scsi_Cmnd)); | 279 | memset(&scp, 0,sizeof(Scsi_Cmnd)); |
280 | sdev.host = scp.host = host; | 280 | sdev.host = scp.host = host; |
281 | sdev.id = scp.target = sdev.host->this_id; | 281 | sdev.id = scp.target = sdev.host->this_id; |