diff options
author | Javier Carrasco <javier.carrasco.cruz@gmail.com> | 2024-07-04 20:23:26 +0300 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2024-08-30 11:40:12 +0300 |
commit | ee9675074939405587edf88c056e8d53bcbf421a (patch) | |
tree | b441ad6d02c9bf23fa2b1d9b111ce5634f5793a5 /drivers/mfd/tps65090.c | |
parent | d6357e2d1df42296c829a9d3e6118ef6f2006b3d (diff) | |
download | linux-ee9675074939405587edf88c056e8d53bcbf421a.tar.xz |
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>
Diffstat (limited to 'drivers/mfd/tps65090.c')
-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), |