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

mfd: tps65086: Constify struct regmap_irq_chip

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

authored by

Javier Carrasco and committed by
Lee Jones
d6357e2d 7206d721

+1 -1
+1 -1
drivers/mfd/tps65086.c
··· 45 45 REGMAP_IRQ_REG(TPS65086_IRQ_FAULT, 0, TPS65086_IRQ_FAULT_MASK), 46 46 }; 47 47 48 - static struct regmap_irq_chip tps65086_irq_chip = { 48 + static const struct regmap_irq_chip tps65086_irq_chip = { 49 49 .name = "tps65086", 50 50 .status_base = TPS65086_IRQ, 51 51 .mask_base = TPS65086_IRQ_MASK,