aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/base/regmap/regmap-irq.c
diff options
context:
space:
mode:
authorMatti Vaittinen <matti.vaittinen@fi.rohmeurope.com>2018-12-27 10:44:43 +0200
committerMark Brown <broonie@kernel.org>2018-12-31 19:35:26 +0000
commit74d4b4e0f43e5ffb61b63f4e3cfcfad3d7398765 (patch)
treebc070e8ad24d4bbeecb81e93cab86cc126f750aa /drivers/base/regmap/regmap-irq.c
parentMerge remote-tracking branch 'regmap/topic/irq' into regmap-next (diff)
downloadlinux-dev-74d4b4e0f43e5ffb61b63f4e3cfcfad3d7398765.tar.xz
linux-dev-74d4b4e0f43e5ffb61b63f4e3cfcfad3d7398765.zip
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: 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>
Diffstat (limited to 'drivers/base/regmap/regmap-irq.c')
-rw-r--r--drivers/base/regmap/regmap-irq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/regmap/regmap-irq.c b/drivers/base/regmap/regmap-irq.c
index 1bd1145ad8b5..d2d0014b0d23 100644
--- a/drivers/base/regmap/regmap-irq.c
+++ b/drivers/base/regmap/regmap-irq.c
@@ -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;