From: Thomas Weißschuh Date: Tue, 14 Feb 2023 03:20:55 +0000 (+0000) Subject: dm sysfs: make kobj_type structure constant X-Git-Tag: v6.6.17~5251^2~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b0bbd86a288ab35234edb704935982c20f74628d;p=platform%2Fkernel%2Flinux-rpi.git dm sysfs: make kobj_type structure constant Since commit ee6d3dd4ed48 ("driver core: make kobj_type constant.") the driver core allows the usage of const struct kobj_type. Take advantage of this to constify the structure definition to prevent modification at runtime. Signed-off-by: Thomas Weißschuh Signed-off-by: Mike Snitzer --- diff --git a/drivers/md/dm-sysfs.c b/drivers/md/dm-sysfs.c index 5dce0f45..bfaef27 100644 --- a/drivers/md/dm-sysfs.c +++ b/drivers/md/dm-sysfs.c @@ -120,7 +120,7 @@ static const struct sysfs_ops dm_sysfs_ops = { .store = dm_attr_store, }; -static struct kobj_type dm_ktype = { +static const struct kobj_type dm_ktype = { .sysfs_ops = &dm_sysfs_ops, .default_groups = dm_groups, .release = dm_kobject_release,