]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
mfd: twl6040: Constify struct regmap_irq_chip
authorJavier Carrasco <javier.carrasco.cruz@gmail.com>
Thu, 4 Jul 2024 17:23:31 +0000 (19:23 +0200)
committerLee Jones <lee@kernel.org>
Fri, 30 Aug 2024 08:40:12 +0000 (09:40 +0100)
`twl6040_irq_chip` is not modified and can be declared as const to
move its data to a read-only section.

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

index c184e8bfab7c8f1a11950d1616741de46b7d5d48..218d6195fad201ca45854a075e63281efd165689 100644 (file)
@@ -620,7 +620,7 @@ static const struct regmap_irq twl6040_irqs[] = {
        { .reg_offset = 0, .mask = TWL6040_READYINT, },
 };
 
-static struct regmap_irq_chip twl6040_irq_chip = {
+static const struct regmap_irq_chip twl6040_irq_chip = {
        .name = "twl6040",
        .irqs = twl6040_irqs,
        .num_irqs = ARRAY_SIZE(twl6040_irqs),