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

mfd: tps65912: Constify struct regmap_irq_chip

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

authored by

Javier Carrasco and committed by
Lee Jones
339a3bad 9544cc65

+1 -1
+1 -1
drivers/mfd/tps65912-core.c
··· 57 57 REGMAP_IRQ_REG(TPS65912_IRQ_PGOOD_LDO10, 3, TPS65912_INT_STS4_PGOOD_LDO10), 58 58 }; 59 59 60 - static struct regmap_irq_chip tps65912_irq_chip = { 60 + static const struct regmap_irq_chip tps65912_irq_chip = { 61 61 .name = "tps65912", 62 62 .irqs = tps65912_irqs, 63 63 .num_irqs = ARRAY_SIZE(tps65912_irqs),