ARM: s3c64xx: make bus_type const
authorRicardo B. Marliere <ricardo@marliere.net>
Sun, 4 Feb 2024 14:46:21 +0000 (11:46 -0300)
committerKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Mon, 12 Feb 2024 07:28:44 +0000 (08:28 +0100)
Since commit d492cc2573a0 ("driver core: device.h: make struct bus_type
a const *"), the driver core can properly handle constant struct
bus_type, move the s3c6410_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 <gregkh@linuxfoundation.org>
Suggested-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Ricardo B. Marliere <ricardo@marliere.net>
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Link: https://lore.kernel.org/r/20240204-bus_cleanup-arm-v1-1-41d651dd8411@marliere.net
Link: https://lore.kernel.org/r/20240211-bus_cleanup-arm-v2-1-3de9e8af7cbd@marliere.net
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
arch/arm/mach-s3c/cpu.h
arch/arm/mach-s3c/s3c6410.c
arch/arm/mach-s3c/s3c64xx.c

index d0adc9b40e25180138efeea813f208f479d2fb70..a0187606b999a03902542d5c9862ec991cd42f5f 100644 (file)
@@ -76,6 +76,6 @@ extern void s3c24xx_init_uartdevs(char *name,
                                  struct s3c24xx_uart_resources *res,
                                  struct s3c2410_uartcfg *cfg, int no);
 
-extern struct bus_type s3c6410_subsys;
+extern const struct bus_type s3c6410_subsys;
 
 #endif
index e79f18d0ca81efb17b35399cc1407804c9cce63e..a29276a4fde53e9e934424f2eb0013462467de5b 100644 (file)
@@ -57,7 +57,7 @@ void __init s3c6410_init_irq(void)
        s3c64xx_init_irq(~0 & ~(1 << 7), ~0);
 }
 
-struct bus_type s3c6410_subsys = {
+const struct bus_type s3c6410_subsys = {
        .name           = "s3c6410-core",
        .dev_name       = "s3c6410-core",
 };
index 9f9717874d676c1bdbbc6be3c74f35b7344bb4c0..6c70ea7f2931280f38b3e21525055409bed8becd 100644 (file)
@@ -149,7 +149,7 @@ static struct map_desc s3c_iodesc[] __initdata = {
        },
 };
 
-static struct bus_type s3c64xx_subsys = {
+static const struct bus_type s3c64xx_subsys = {
        .name           = "s3c64xx-core",
        .dev_name       = "s3c64xx-core",
 };