Skip to content

Commit a389162

Browse files
rbmarlierekrzk
authored andcommitted
ARM: s3c64xx: make bus_type const
Since commit d492cc2 ("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>
1 parent 52524ff commit a389162

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

arch/arm/mach-s3c/cpu.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,6 @@ extern void s3c24xx_init_uartdevs(char *name,
7676
struct s3c24xx_uart_resources *res,
7777
struct s3c2410_uartcfg *cfg, int no);
7878

79-
extern struct bus_type s3c6410_subsys;
79+
extern const struct bus_type s3c6410_subsys;
8080

8181
#endif

arch/arm/mach-s3c/s3c6410.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ void __init s3c6410_init_irq(void)
5757
s3c64xx_init_irq(~0 & ~(1 << 7), ~0);
5858
}
5959

60-
struct bus_type s3c6410_subsys = {
60+
const struct bus_type s3c6410_subsys = {
6161
.name = "s3c6410-core",
6262
.dev_name = "s3c6410-core",
6363
};

arch/arm/mach-s3c/s3c64xx.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ static struct map_desc s3c_iodesc[] __initdata = {
149149
},
150150
};
151151

152-
static struct bus_type s3c64xx_subsys = {
152+
static const struct bus_type s3c64xx_subsys = {
153153
.name = "s3c64xx-core",
154154
.dev_name = "s3c64xx-core",
155155
};

0 commit comments

Comments
 (0)