mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:02:20 +00:00
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>
This commit is contained in:
parent
d6357e2d1d
commit
ee96750749
@ -120,7 +120,7 @@ static const struct regmap_irq tps65090_irqs[] = {
|
||||
},
|
||||
};
|
||||
|
||||
static struct regmap_irq_chip tps65090_irq_chip = {
|
||||
static const struct regmap_irq_chip tps65090_irq_chip = {
|
||||
.name = "tps65090",
|
||||
.irqs = tps65090_irqs,
|
||||
.num_irqs = ARRAY_SIZE(tps65090_irqs),
|
||||
|
Loading…
Reference in New Issue
Block a user