module: make module_ktype 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: Luis Chamberlain <mcgrof@kernel.org>
This commit is contained in:
Thomas Weißschuh
2023-02-04 05:44:46 +00:00
committed by Luis Chamberlain
parent efaa2496ba
commit 042edf1ebb
2 changed files with 2 additions and 2 deletions

View File

@@ -948,7 +948,7 @@ static void module_kobj_release(struct kobject *kobj)
complete(mk->kobj_completion);
}
struct kobj_type module_ktype = {
const struct kobj_type module_ktype = {
.release = module_kobj_release,
.sysfs_ops = &module_sysfs_ops,
};