diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-10-16 11:18:50 -0400 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2017-10-19 10:15:30 -0400 |
commit | 085006e834cb293e28a988ea9f6edfa796b177fb (patch) | |
tree | 8d43f411d45eef2d1440d9614af9b68a003aa183 /drivers/hwtracing/stm | |
parent | c1e950842f8a212a1811d4148a100d84b18037e4 (diff) |
stm class: make config_item_type const
Make config_item_type structures const as they are either passed to a
function having the argument as const or used inside a if statement or
stored in the const "ci_type" field of a config_item structure.
Done using Coccinelle.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/hwtracing/stm')
-rw-r--r-- | drivers/hwtracing/stm/policy.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/hwtracing/stm/policy.c b/drivers/hwtracing/stm/policy.c index 6c0ae2996326..33e9a1b6ea7c 100644 --- a/drivers/hwtracing/stm/policy.c +++ b/drivers/hwtracing/stm/policy.c | |||
@@ -187,8 +187,8 @@ static struct configfs_attribute *stp_policy_node_attrs[] = { | |||
187 | NULL, | 187 | NULL, |
188 | }; | 188 | }; |
189 | 189 | ||
190 | static struct config_item_type stp_policy_type; | 190 | static const struct config_item_type stp_policy_type; |
191 | static struct config_item_type stp_policy_node_type; | 191 | static const struct config_item_type stp_policy_node_type; |
192 | 192 | ||
193 | static struct config_group * | 193 | static struct config_group * |
194 | stp_policy_node_make(struct config_group *group, const char *name) | 194 | stp_policy_node_make(struct config_group *group, const char *name) |
@@ -236,7 +236,7 @@ static struct configfs_group_operations stp_policy_node_group_ops = { | |||
236 | .drop_item = stp_policy_node_drop, | 236 | .drop_item = stp_policy_node_drop, |
237 | }; | 237 | }; |
238 | 238 | ||
239 | static struct config_item_type stp_policy_node_type = { | 239 | static const struct config_item_type stp_policy_node_type = { |
240 | .ct_item_ops = &stp_policy_node_item_ops, | 240 | .ct_item_ops = &stp_policy_node_item_ops, |
241 | .ct_group_ops = &stp_policy_node_group_ops, | 241 | .ct_group_ops = &stp_policy_node_group_ops, |
242 | .ct_attrs = stp_policy_node_attrs, | 242 | .ct_attrs = stp_policy_node_attrs, |
@@ -311,7 +311,7 @@ static struct configfs_group_operations stp_policy_group_ops = { | |||
311 | .make_group = stp_policy_node_make, | 311 | .make_group = stp_policy_node_make, |
312 | }; | 312 | }; |
313 | 313 | ||
314 | static struct config_item_type stp_policy_type = { | 314 | static const struct config_item_type stp_policy_type = { |
315 | .ct_item_ops = &stp_policy_item_ops, | 315 | .ct_item_ops = &stp_policy_item_ops, |
316 | .ct_group_ops = &stp_policy_group_ops, | 316 | .ct_group_ops = &stp_policy_group_ops, |
317 | .ct_attrs = stp_policy_attrs, | 317 | .ct_attrs = stp_policy_attrs, |
@@ -380,7 +380,7 @@ static struct configfs_group_operations stp_policies_group_ops = { | |||
380 | .make_group = stp_policies_make, | 380 | .make_group = stp_policies_make, |
381 | }; | 381 | }; |
382 | 382 | ||
383 | static struct config_item_type stp_policies_type = { | 383 | static const struct config_item_type stp_policies_type = { |
384 | .ct_group_ops = &stp_policies_group_ops, | 384 | .ct_group_ops = &stp_policies_group_ops, |
385 | .ct_owner = THIS_MODULE, | 385 | .ct_owner = THIS_MODULE, |
386 | }; | 386 | }; |