aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'drivers')
-rw-r--r--drivers/hwtracing/stm/policy.c10
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
190static struct config_item_type stp_policy_type; 190static const struct config_item_type stp_policy_type;
191static struct config_item_type stp_policy_node_type; 191static const struct config_item_type stp_policy_node_type;
192 192
193static struct config_group * 193static struct config_group *
194stp_policy_node_make(struct config_group *group, const char *name) 194stp_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
239static struct config_item_type stp_policy_node_type = { 239static 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
314static struct config_item_type stp_policy_type = { 314static 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
383static struct config_item_type stp_policies_type = { 383static 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};