Browse Source

scsi: make device_type const

Make these const as they are only stored in the type field of a device
structure, which is const.
Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Bhumika Goyal 8 years ago
parent
commit
7988faf525
2 changed files with 4 additions and 4 deletions
  1. 2 2
      drivers/scsi/fcoe/fcoe_sysfs.c
  2. 2 2
      drivers/scsi/scsi_transport_iscsi.c

+ 2 - 2
drivers/scsi/fcoe/fcoe_sysfs.c

@@ -659,13 +659,13 @@ static void fcoe_fcf_device_release(struct device *dev)
 	kfree(fcf);
 	kfree(fcf);
 }
 }
 
 
-static struct device_type fcoe_ctlr_device_type = {
+static const struct device_type fcoe_ctlr_device_type = {
 	.name = "fcoe_ctlr",
 	.name = "fcoe_ctlr",
 	.groups = fcoe_ctlr_attr_groups,
 	.groups = fcoe_ctlr_attr_groups,
 	.release = fcoe_ctlr_device_release,
 	.release = fcoe_ctlr_device_release,
 };
 };
 
 
-static struct device_type fcoe_fcf_device_type = {
+static const struct device_type fcoe_fcf_device_type = {
 	.name = "fcoe_fcf",
 	.name = "fcoe_fcf",
 	.groups = fcoe_fcf_attr_groups,
 	.groups = fcoe_fcf_attr_groups,
 	.release = fcoe_fcf_device_release,
 	.release = fcoe_fcf_device_release,

+ 2 - 2
drivers/scsi/scsi_transport_iscsi.c

@@ -1009,7 +1009,7 @@ static void iscsi_flashnode_sess_release(struct device *dev)
 	kfree(fnode_sess);
 	kfree(fnode_sess);
 }
 }
 
 
-static struct device_type iscsi_flashnode_sess_dev_type = {
+static const struct device_type iscsi_flashnode_sess_dev_type = {
 	.name = "iscsi_flashnode_sess_dev_type",
 	.name = "iscsi_flashnode_sess_dev_type",
 	.groups = iscsi_flashnode_sess_attr_groups,
 	.groups = iscsi_flashnode_sess_attr_groups,
 	.release = iscsi_flashnode_sess_release,
 	.release = iscsi_flashnode_sess_release,
@@ -1195,7 +1195,7 @@ static void iscsi_flashnode_conn_release(struct device *dev)
 	kfree(fnode_conn);
 	kfree(fnode_conn);
 }
 }
 
 
-static struct device_type iscsi_flashnode_conn_dev_type = {
+static const struct device_type iscsi_flashnode_conn_dev_type = {
 	.name = "iscsi_flashnode_conn_dev_type",
 	.name = "iscsi_flashnode_conn_dev_type",
 	.groups = iscsi_flashnode_conn_attr_groups,
 	.groups = iscsi_flashnode_conn_attr_groups,
 	.release = iscsi_flashnode_conn_release,
 	.release = iscsi_flashnode_conn_release,