mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 05:32:00 +00:00
dm sysfs: make kobj_type structure constant
Since commit ee6d3dd4ed
("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 <linux@weissschuh.net>
Signed-off-by: Mike Snitzer <snitzer@kernel.org>
This commit is contained in:
parent
a7e8f7fbe2
commit
b0bbd86a28
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user