regmap: regmap-irq: silently ignore unsupported type settings
authorMatti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
Thu, 27 Dec 2018 08:44:43 +0000 (10:44 +0200)
committerMark Brown <broonie@kernel.org>
Mon, 31 Dec 2018 19:35:26 +0000 (19:35 +0000)
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: 1c2928e3e321 ("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>
drivers/base/regmap/regmap-irq.c

index 1bd1145..d2d0014 100644 (file)
@@ -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;