mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-27 14:43:58 +08:00
regmap: regmap-irq: silently ignore unsupported type settings
Do not return error if irq-type setting is requested for
controlloer which does not support this. This is how
regmap-irq has previously handled the undupported type
settings and existing drivers seem to be upset if failure
is now reported.
Fixes: 1c2928e3e3
("regmap: regmap-irq/gpio-max77620: add level-irq support")
Signed-off-by: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
Reported-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
58331d618b
commit
74d4b4e0f4
@ -258,7 +258,7 @@ static int regmap_irq_set_type(struct irq_data *data, unsigned int type)
|
||||
const struct regmap_irq_type *t = &irq_data->type;
|
||||
|
||||
if ((t->types_supported & type) != type)
|
||||
return -ENOTSUPP;
|
||||
return 0;
|
||||
|
||||
reg = t->type_reg_offset / map->reg_stride;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user