Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mfd: tps65090: Constify struct regmap_irq_chip

`tps65090_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-16-0c8785b1331d@gmail.com
Signed-off-by: Lee Jones <lee@kernel.org>

authored by

Javier Carrasco and committed by
Lee Jones
ee967507 d6357e2d

+1 -1
+1 -1
drivers/mfd/tps65090.c
··· 120 120 }, 121 121 }; 122 122 123 - static struct regmap_irq_chip tps65090_irq_chip = { 123 + static const struct regmap_irq_chip tps65090_irq_chip = { 124 124 .name = "tps65090", 125 125 .irqs = tps65090_irqs, 126 126 .num_irqs = ARRAY_SIZE(tps65090_irqs),