diff options
author | Javier Carrasco <[email protected]> | 2024-07-04 19:23:26 +0200 |
---|---|---|
committer | Lee Jones <[email protected]> | 2024-08-30 09:40:12 +0100 |
commit | ee9675074939405587edf88c056e8d53bcbf421a (patch) | |
tree | b441ad6d02c9bf23fa2b1d9b111ce5634f5793a5 | |
parent | d6357e2d1df42296c829a9d3e6118ef6f2006b3d (diff) |
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 <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Lee Jones <[email protected]>
-rw-r--r-- | drivers/mfd/tps65090.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/tps65090.c b/drivers/mfd/tps65090.c index b82cd484ac85..24f42175a9b4 100644 --- a/drivers/mfd/tps65090.c +++ b/drivers/mfd/tps65090.c @@ -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), |