diff options
author | Christoph Hellwig <hch@lst.de> | 2005-10-31 12:31:40 -0500 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2005-11-09 15:44:09 -0500 |
commit | d0be4a7d29ad0bd3ce2209dd9e46d410b632db59 (patch) | |
tree | a76b11820f03826b1a32b8e9117eb57e19874776 /drivers/scsi/bvme6000.c | |
parent | c0ed79a331caa68ac027dd6afc02bb5b58ef2798 (diff) |
[SCSI] remove Scsi_Host_Template typedef
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/bvme6000.c')
-rw-r--r-- | drivers/scsi/bvme6000.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/bvme6000.c b/drivers/scsi/bvme6000.c index 29c7ed30c09e..3c43928ab402 100644 --- a/drivers/scsi/bvme6000.c +++ b/drivers/scsi/bvme6000.c | |||
@@ -24,7 +24,7 @@ | |||
24 | #include<linux/stat.h> | 24 | #include<linux/stat.h> |
25 | 25 | ||
26 | 26 | ||
27 | int bvme6000_scsi_detect(Scsi_Host_Template *tpnt) | 27 | int bvme6000_scsi_detect(struct scsi_host_template *tpnt) |
28 | { | 28 | { |
29 | static unsigned char called = 0; | 29 | static unsigned char called = 0; |
30 | int clock; | 30 | int clock; |
@@ -60,7 +60,7 @@ static int bvme6000_scsi_release(struct Scsi_Host *shost) | |||
60 | return 0; | 60 | return 0; |
61 | } | 61 | } |
62 | 62 | ||
63 | static Scsi_Host_Template driver_template = { | 63 | static struct scsi_host_template driver_template = { |
64 | .name = "BVME6000 NCR53c710 SCSI", | 64 | .name = "BVME6000 NCR53c710 SCSI", |
65 | .detect = bvme6000_scsi_detect, | 65 | .detect = bvme6000_scsi_detect, |
66 | .release = bvme6000_scsi_release, | 66 | .release = bvme6000_scsi_release, |