From: Rikard Falkeborn Date: Tue, 22 Sep 2020 19:26:54 +0000 (+0200) Subject: mfd: tps65xxx: Constify static struct resource in OMAP2+ drivers X-Git-Tag: v5.15~2155^2~44 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0aefed0eb805b09899ad37c9603f33a72903ae20;p=platform%2Fkernel%2Flinux-starfive.git mfd: tps65xxx: Constify static struct resource in OMAP2+ drivers Constify a number of static struct resource. The only usage of the structs are to assign their address to the resources field in the mfd_cell struct. This allows the compiler to put them in read-only memory. Done with the help of Coccinelle. Signed-off-by: Rikard Falkeborn Signed-off-by: Lee Jones --- diff --git a/drivers/mfd/tps65217.c b/drivers/mfd/tps65217.c index 2d9c282..8027b0a 100644 --- a/drivers/mfd/tps65217.c +++ b/drivers/mfd/tps65217.c @@ -33,12 +33,12 @@ #include #include -static struct resource charger_resources[] = { +static const struct resource charger_resources[] = { DEFINE_RES_IRQ_NAMED(TPS65217_IRQ_AC, "AC"), DEFINE_RES_IRQ_NAMED(TPS65217_IRQ_USB, "USB"), }; -static struct resource pb_resources[] = { +static const struct resource pb_resources[] = { DEFINE_RES_IRQ_NAMED(TPS65217_IRQ_PB, "PB"), }; diff --git a/drivers/mfd/tps65910.c b/drivers/mfd/tps65910.c index 1195902..a6c28df 100644 --- a/drivers/mfd/tps65910.c +++ b/drivers/mfd/tps65910.c @@ -21,7 +21,7 @@ #include #include -static struct resource rtc_resources[] = { +static const struct resource rtc_resources[] = { { .start = TPS65910_IRQ_RTC_ALARM, .end = TPS65910_IRQ_RTC_ALARM,