diff options
author | Ricardo B. Marliere <[email protected]> | 2024-02-04 11:25:45 -0300 |
---|---|---|
committer | Heiko Carstens <[email protected]> | 2024-02-09 13:58:15 +0100 |
commit | 6695d792246eb69c77e5952a0b85c8684950ed71 (patch) | |
tree | 8870aec7eb8097240ab61e35d305197ae5412769 | |
parent | 0628c03934187be33942580e10bb9afcc61adeed (diff) |
s390/time: make stp_subsys const
Now that the driver core can properly handle constant struct bus_type,
move the stp_subsys variable to be a constant structure as well,
placing it into read-only memory which can not be modified at runtime.
Cc: Greg Kroah-Hartman <[email protected]>
Suggested-by: Greg Kroah-Hartman <[email protected]>
Signed-off-by: "Ricardo B. Marliere" <[email protected]>
Reviewed-by: Greg Kroah-Hartman <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Heiko Carstens <[email protected]>
-rw-r--r-- | arch/s390/kernel/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/kernel/time.c b/arch/s390/kernel/time.c index 8357306fb76e..fb9f31f36628 100644 --- a/arch/s390/kernel/time.c +++ b/arch/s390/kernel/time.c @@ -716,7 +716,7 @@ out_unlock: /* * STP subsys sysfs interface functions */ -static struct bus_type stp_subsys = { +static const struct bus_type stp_subsys = { .name = "stp", .dev_name = "stp", }; |