diff options
author | David Brownell <dbrownell@users.sourceforge.net> | 2009-06-24 13:06:31 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-09-15 12:50:47 -0400 |
commit | a4dbd6740df0872cdf0a86841f75beec8381964d (patch) | |
tree | 1093687845d89f8397d61e7df1ad8546a5a25225 /drivers/scsi | |
parent | 5b2ea2f10dbb2fa91d8033993000f8664309395f (diff) |
driver model: constify attribute groups
Let attribute group vectors be declared "const". We'd
like to let most attribute metadata live in read-only
sections... this is a start.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/scsi_priv.h | 2 | ||||
-rw-r--r-- | drivers/scsi/scsi_sysfs.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/scsi/scsi_priv.h b/drivers/scsi/scsi_priv.h index 021e503c8c44..1fbf7c78bba0 100644 --- a/drivers/scsi/scsi_priv.h +++ b/drivers/scsi/scsi_priv.h | |||
@@ -132,7 +132,7 @@ extern struct scsi_transport_template blank_transport_template; | |||
132 | extern void __scsi_remove_device(struct scsi_device *); | 132 | extern void __scsi_remove_device(struct scsi_device *); |
133 | 133 | ||
134 | extern struct bus_type scsi_bus_type; | 134 | extern struct bus_type scsi_bus_type; |
135 | extern struct attribute_group *scsi_sysfs_shost_attr_groups[]; | 135 | extern const struct attribute_group *scsi_sysfs_shost_attr_groups[]; |
136 | 136 | ||
137 | /* scsi_netlink.c */ | 137 | /* scsi_netlink.c */ |
138 | #ifdef CONFIG_SCSI_NETLINK | 138 | #ifdef CONFIG_SCSI_NETLINK |
diff --git a/drivers/scsi/scsi_sysfs.c b/drivers/scsi/scsi_sysfs.c index 91482f2dcc50..fde54537d715 100644 --- a/drivers/scsi/scsi_sysfs.c +++ b/drivers/scsi/scsi_sysfs.c | |||
@@ -275,7 +275,7 @@ struct attribute_group scsi_shost_attr_group = { | |||
275 | .attrs = scsi_sysfs_shost_attrs, | 275 | .attrs = scsi_sysfs_shost_attrs, |
276 | }; | 276 | }; |
277 | 277 | ||
278 | struct attribute_group *scsi_sysfs_shost_attr_groups[] = { | 278 | const struct attribute_group *scsi_sysfs_shost_attr_groups[] = { |
279 | &scsi_shost_attr_group, | 279 | &scsi_shost_attr_group, |
280 | NULL | 280 | NULL |
281 | }; | 281 | }; |
@@ -745,7 +745,7 @@ static struct attribute_group scsi_sdev_attr_group = { | |||
745 | .attrs = scsi_sdev_attrs, | 745 | .attrs = scsi_sdev_attrs, |
746 | }; | 746 | }; |
747 | 747 | ||
748 | static struct attribute_group *scsi_sdev_attr_groups[] = { | 748 | static const struct attribute_group *scsi_sdev_attr_groups[] = { |
749 | &scsi_sdev_attr_group, | 749 | &scsi_sdev_attr_group, |
750 | NULL | 750 | NULL |
751 | }; | 751 | }; |