]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
mfd: bd9571mwv: Constify struct regmap_irq_chip
authorJavier Carrasco <javier.carrasco.cruz@gmail.com>
Thu, 4 Jul 2024 17:23:19 +0000 (19:23 +0200)
committerLee Jones <lee@kernel.org>
Fri, 30 Aug 2024 08:40:11 +0000 (09:40 +0100)
`bd9571mwv_irq_chip` and `bd9574mwf_irq_chip` are not modified and can
be declared as const to move their data to a read-only section.

Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com>
Reviewed-by: Matti Vaittinen <mazziesaccount@gmail.com>
Link: https://lore.kernel.org/r/20240704-mfd-const-regmap_config-v2-9-0c8785b1331d@gmail.com
Signed-off-by: Lee Jones <lee@kernel.org>
drivers/mfd/bd9571mwv.c

index e7c2ac74d9988877f16a9eeded7fd07213caf90d..db8c2963fb485f9d725971ed530f1b4a411a8539 100644 (file)
@@ -93,7 +93,7 @@ static const struct regmap_irq bd9571mwv_irqs[] = {
                       BD9571MWV_INT_INTREQ_BKUP_TRG_INT),
 };
 
-static struct regmap_irq_chip bd9571mwv_irq_chip = {
+static const struct regmap_irq_chip bd9571mwv_irq_chip = {
        .name           = "bd9571mwv",
        .status_base    = BD9571MWV_INT_INTREQ,
        .mask_base      = BD9571MWV_INT_INTMASK,
@@ -159,7 +159,7 @@ static const struct regmap_config bd9574mwf_regmap_config = {
        .max_register   = 0xff,
 };
 
-static struct regmap_irq_chip bd9574mwf_irq_chip = {
+static const struct regmap_irq_chip bd9574mwf_irq_chip = {
        .name           = "bd9574mwf",
        .status_base    = BD9571MWV_INT_INTREQ,
        .mask_base      = BD9571MWV_INT_INTMASK,