mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-12-28 16:56:26 +00:00
mfd: tps65910: Constify struct regmap_irq_chip
`tps65910_irq_chip` and `tps65911_irq_chip` are not modified and can be declared as const to move their data to a read-only section. The pointer used to reference those structs has also been converted to const. Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com> Link: https://lore.kernel.org/r/20240704-mfd-const-regmap_config-v2-19-0c8785b1331d@gmail.com Signed-off-by: Lee Jones <lee@kernel.org>
This commit is contained in:
parent
36b6675f78
commit
9544cc6552
@ -197,7 +197,7 @@ static const struct regmap_irq tps65910_irqs[] = {
|
||||
},
|
||||
};
|
||||
|
||||
static struct regmap_irq_chip tps65911_irq_chip = {
|
||||
static const struct regmap_irq_chip tps65911_irq_chip = {
|
||||
.name = "tps65910",
|
||||
.irqs = tps65911_irqs,
|
||||
.num_irqs = ARRAY_SIZE(tps65911_irqs),
|
||||
@ -208,7 +208,7 @@ static struct regmap_irq_chip tps65911_irq_chip = {
|
||||
.ack_base = TPS65910_INT_STS,
|
||||
};
|
||||
|
||||
static struct regmap_irq_chip tps65910_irq_chip = {
|
||||
static const struct regmap_irq_chip tps65910_irq_chip = {
|
||||
.name = "tps65910",
|
||||
.irqs = tps65910_irqs,
|
||||
.num_irqs = ARRAY_SIZE(tps65910_irqs),
|
||||
@ -223,7 +223,7 @@ static int tps65910_irq_init(struct tps65910 *tps65910, int irq,
|
||||
struct tps65910_platform_data *pdata)
|
||||
{
|
||||
int ret;
|
||||
static struct regmap_irq_chip *tps6591x_irqs_chip;
|
||||
static const struct regmap_irq_chip *tps6591x_irqs_chip;
|
||||
|
||||
if (!irq) {
|
||||
dev_warn(tps65910->dev, "No interrupt support, no core IRQ\n");
|
||||
|
Loading…
Reference in New Issue
Block a user