summaryrefslogtreecommitdiff
path: root/drivers/md/bcache/sysfs.h
diff options
context:
space:
mode:
authorThomas Weißschuh <linux@weissschuh.net>2023-06-15 15:12:19 +0300
committerJens Axboe <axboe@kernel.dk>2023-06-15 16:30:11 +0300
commitb98dd0b0a596fdeaca68396ce8f782883ed253a9 (patch)
treed871ef5f986959b0cfe90505b7de79587c263655 /drivers/md/bcache/sysfs.h
parenta301b2deb66cd93bae0f676702356273ebf8abb6 (diff)
downloadlinux-b98dd0b0a596fdeaca68396ce8f782883ed253a9.tar.xz
bcache: make kobj_type structures 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 definitions to prevent modification at runtime. Signed-off-by: Thomas Weißschuh <linux@weissschuh.net> Signed-off-by: Coly Li <colyli@suse.de> Link: https://lore.kernel.org/r/20230615121223.22502-3-colyli@suse.de Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/md/bcache/sysfs.h')
-rw-r--r--drivers/md/bcache/sysfs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/bcache/sysfs.h b/drivers/md/bcache/sysfs.h
index a2ff6447b699..65b8bd975ab1 100644
--- a/drivers/md/bcache/sysfs.h
+++ b/drivers/md/bcache/sysfs.h
@@ -3,7 +3,7 @@
#define _BCACHE_SYSFS_H_
#define KTYPE(type) \
-struct kobj_type type ## _ktype = { \
+const struct kobj_type type ## _ktype = { \
.release = type ## _release, \
.sysfs_ops = &((const struct sysfs_ops) { \
.show = type ## _show, \