diff options
author | William Breathitt Gray <william.gray@linaro.org> | 2023-04-07 14:47:33 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-05-08 02:50:02 +0300 |
commit | 69da5aa99ea67e86d3461fb281eadc952cc2914f (patch) | |
tree | ad9800b53c25e79dfb6d4e3b60c16fcdfae298b6 /include/linux/regmap.h | |
parent | b5c506b163d305a8b6d5ead562699d3fc9935498 (diff) | |
download | linux-69da5aa99ea67e86d3461fb281eadc952cc2914f.tar.xz |
regmap-irq: Drop map from handle_mask_sync() parameters
Remove the map parameter from the struct regmap_irq_chip callback
handle_mask_sync() because it can be passed via the irq_drv_data
parameter instead. The gpio-104-dio-48e driver is the only consumer of
this callback and is thus updated accordingly.
Reviewed-by: Linus Walleij <linus.walleij@linaro.org
Signed-off-by: William Breathitt Gray <william.gray@linaro.org
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com
Link: https://lore.kernel.org/r/1f44fb0fbcd3dccea3371215b00f1b9a956c1a12.1679323449.git.william.gray@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org
Diffstat (limited to 'include/linux/regmap.h')
-rw-r--r-- | include/linux/regmap.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/regmap.h b/include/linux/regmap.h index c2b9cc5db824..f820bd44d16f 100644 --- a/include/linux/regmap.h +++ b/include/linux/regmap.h @@ -1658,8 +1658,7 @@ struct regmap_irq_chip { int (*handle_pre_irq)(void *irq_drv_data); int (*handle_post_irq)(void *irq_drv_data); - int (*handle_mask_sync)(struct regmap *map, int index, - unsigned int mask_buf_def, + int (*handle_mask_sync)(int index, unsigned int mask_buf_def, unsigned int mask_buf, void *irq_drv_data); int (*set_type_virt)(unsigned int **buf, unsigned int type, unsigned long hwirq, int reg); |