summaryrefslogtreecommitdiffstats
path: root/drivers/scsi/sr_vendor.c
diff options
context:
space:
mode:
authorMatthew Wilcox2005-12-17 05:11:37 +0100
committerJames Bottomley2005-12-17 17:50:23 +0100
commit7b32b8e018d8f8cc94c808a5fa84a3f889441b91 (patch)
treeafe4f0d68258bd7beac1ad3f3f1c09ba195bf096 /drivers/scsi/sr_vendor.c
parent[SCSI] Merge sym53c8xx_comm.h and sym53c8xx_defs.h into ncr driver (diff)
downloadkernel-qcow2-linux-7b32b8e018d8f8cc94c808a5fa84a3f889441b91.tar.gz
kernel-qcow2-linux-7b32b8e018d8f8cc94c808a5fa84a3f889441b91.tar.xz
kernel-qcow2-linux-7b32b8e018d8f8cc94c808a5fa84a3f889441b91.zip
[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>
Diffstat (limited to 'drivers/scsi/sr_vendor.c')
-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)
#ifndef CONFIG_BLK_DEV_SR_VENDOR
cd->vendor = VENDOR_SCSI3;
#else
- char *vendor = cd->device->vendor;
- char *model = cd->device->model;
+ const char *vendor = cd->device->vendor;
+ const char *model = cd->device->model;
/* default */
cd->vendor = VENDOR_SCSI3;