diff options
author | Axel Lin <axel.lin@ingics.com> | 2019-02-27 04:30:53 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-03-11 19:36:29 +0300 |
commit | e08abeca39673e1045ca1e5a90bd7fef69d0fe8f (patch) | |
tree | 4bd95290196f077f5f381788ef2f9d343de2efaa /drivers/mfd | |
parent | 5b60ee576a02cb6b2371dec085ef2623a7df77b9 (diff) | |
download | linux-e08abeca39673e1045ca1e5a90bd7fef69d0fe8f.tar.xz |
regulator: wm8400: Get rid of wm8400_block_read/wm8400_set_bits functions
The only user of wm8400_block_read/wm8400_set_bits functions is the
wm8400 regulator driver. At the context of all the callers, we can
use regmap_bulk_read/regmap_update_bits directly.
Thus remove wm8400_block_read/wm8400_set_bits functions.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/wm8400-core.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/mfd/wm8400-core.c b/drivers/mfd/wm8400-core.c index 8a98a2fc74e1..7eab2bedad93 100644 --- a/drivers/mfd/wm8400-core.c +++ b/drivers/mfd/wm8400-core.c @@ -35,12 +35,6 @@ static bool wm8400_volatile(struct device *dev, unsigned int reg) } } -int wm8400_block_read(struct wm8400 *wm8400, u8 reg, int count, u16 *data) -{ - return regmap_bulk_read(wm8400->regmap, reg, data, count); -} -EXPORT_SYMBOL_GPL(wm8400_block_read); - static int wm8400_register_codec(struct wm8400 *wm8400) { const struct mfd_cell cell = { |