diff options
author | Axel Lin <axel.lin@ingics.com> | 2019-02-27 09:30:53 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-03-11 16:36:29 +0000 |
commit | e08abeca39673e1045ca1e5a90bd7fef69d0fe8f (patch) | |
tree | 4bd95290196f077f5f381788ef2f9d343de2efaa /include/linux/mfd | |
parent | 5b60ee576a02cb6b2371dec085ef2623a7df77b9 (diff) | |
download | linux-e08abeca39673e1045ca1e5a90bd7fef69d0fe8f.tar.gz linux-e08abeca39673e1045ca1e5a90bd7fef69d0fe8f.tar.bz2 linux-e08abeca39673e1045ca1e5a90bd7fef69d0fe8f.zip |
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 'include/linux/mfd')
-rw-r--r-- | include/linux/mfd/wm8400-private.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/linux/mfd/wm8400-private.h b/include/linux/mfd/wm8400-private.h index 4ee908f5b834..43d0d307e2e3 100644 --- a/include/linux/mfd/wm8400-private.h +++ b/include/linux/mfd/wm8400-private.h @@ -923,12 +923,4 @@ struct wm8400 { #define WM8400_LINE_CMP_VTHD_SHIFT 0 /* LINE_CMP_VTHD - [3:0] */ #define WM8400_LINE_CMP_VTHD_WIDTH 4 /* LINE_CMP_VTHD - [3:0] */ -int wm8400_block_read(struct wm8400 *wm8400, u8 reg, int count, u16 *data); - -static inline int wm8400_set_bits(struct wm8400 *wm8400, u8 reg, - u16 mask, u16 val) -{ - return regmap_update_bits(wm8400->regmap, reg, mask, val); -} - #endif |