projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8d9ad03
)
mfd: tps65090: Replace irqchip mask_invert with unmask_base
author
Aidan MacDonald
<aidanmacdonald.0x0@gmail.com>
Sat, 12 Nov 2022 15:18:34 +0000
(15:18 +0000)
committer
Lee Jones
<lee@kernel.org>
Wed, 7 Dec 2022 13:28:15 +0000
(13:28 +0000)
Remove use of the deprecated mask_invert flag. Inverted mask
registers (where a '1' bit enables an IRQ) can be described more
directly as an unmask register.
Signed-off-by: Aidan MacDonald <aidanmacdonald.0x0@gmail.com>
Signed-off-by: Lee Jones <lee@kernel.org>
Link:
https://lore.kernel.org/r/20221112151835.39059-18-aidanmacdonald.0x0@gmail.com
drivers/mfd/tps65090.c
patch
|
blob
|
history
diff --git
a/drivers/mfd/tps65090.c
b/drivers/mfd/tps65090.c
index e1f2491a2578d4665af8c7325c91eb9f90ec09d1..af718a9c58b333c7c4948086b989925871bc6ece 100644
(file)
--- a/
drivers/mfd/tps65090.c
+++ b/
drivers/mfd/tps65090.c
@@
-127,8
+127,7
@@
static struct regmap_irq_chip tps65090_irq_chip = {
.num_irqs = ARRAY_SIZE(tps65090_irqs),
.num_regs = NUM_INT_REG,
.status_base = TPS65090_REG_INTR_STS,
- .mask_base = TPS65090_REG_INTR_MASK,
- .mask_invert = true,
+ .unmask_base = TPS65090_REG_INTR_MASK,
};
static bool is_volatile_reg(struct device *dev, unsigned int reg)