aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wilcox <matthew@wil.cx>2005-12-16 23:11:37 -0500
committerJames Bottomley <jejb@mulgrave.(none)>2005-12-17 11:50:23 -0500
commit7b32b8e018d8f8cc94c808a5fa84a3f889441b91 (patch)
treeafe4f0d68258bd7beac1ad3f3f1c09ba195bf096
parent19c65091c133a98b20d867c94b1b1380a79e4b81 (diff)
[SCSI] Missing const in sr_vendor
Fix compile warnings with current scsi-misc git tree Signed-off-by: Matthew Wilcox <matthew@wil.cx> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
-rw-r--r--drivers/scsi/sr_vendor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/sr_vendor.c b/drivers/scsi/sr_vendor.c
index 78274dc91f5c..9dde8df2f5c9 100644
--- a/drivers/scsi/sr_vendor.c
+++ b/drivers/scsi/sr_vendor.c
@@ -68,8 +68,8 @@ void sr_vendor_init(Scsi_CD *cd)
68#ifndef CONFIG_BLK_DEV_SR_VENDOR 68#ifndef CONFIG_BLK_DEV_SR_VENDOR
69 cd->vendor = VENDOR_SCSI3; 69 cd->vendor = VENDOR_SCSI3;
70#else 70#else
71 char *vendor = cd->device->vendor; 71 const char *vendor = cd->device->vendor;
72 char *model = cd->device->model; 72 const char *model = cd->device->model;
73 73
74 /* default */ 74 /* default */
75 cd->vendor = VENDOR_SCSI3; 75 cd->vendor = VENDOR_SCSI3;