diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2016-02-15 00:23:17 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-02-19 11:15:56 -0500 |
commit | 98c2dc48694a47109fff430a216fc13a9b45a4a1 (patch) | |
tree | 5560238b115987fe0e8090dad412a57d9cdf8e05 /include/linux/regmap.h | |
parent | 30ed9cb7a49b499ebc6061e4ff38e88cb4857cad (diff) |
regmap: merge regmap_update_bits_check() into macro
Current regmap has many similar update functions like below,
but the difference is very few.
regmap_update_bits()
regmap_update_bits_async()
regmap_update_bits_check()
regmap_update_bits_check_async()
Furthermore, we can add *force* write option too in the future.
This patch merges regmap_update_bits_check() into macro
by using regmap_update_bits_base().
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/linux/regmap.h')
-rw-r--r-- | include/linux/regmap.h | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/include/linux/regmap.h b/include/linux/regmap.h index 90c8b0e99f9d..dd227dd5e5f8 100644 --- a/include/linux/regmap.h +++ b/include/linux/regmap.h | |||
@@ -69,6 +69,8 @@ struct reg_sequence { | |||
69 | regmap_update_bits_base(map, reg, mask, val, NULL, false, false) | 69 | regmap_update_bits_base(map, reg, mask, val, NULL, false, false) |
70 | #define regmap_update_bits_async(map, reg, mask, val)\ | 70 | #define regmap_update_bits_async(map, reg, mask, val)\ |
71 | regmap_update_bits_base(map, reg, mask, val, NULL, true, false) | 71 | regmap_update_bits_base(map, reg, mask, val, NULL, true, false) |
72 | #define regmap_update_bits_check(map, reg, mask, val, change)\ | ||
73 | regmap_update_bits_base(map, reg, mask, val, change, false, false) | ||
72 | 74 | ||
73 | #ifdef CONFIG_REGMAP | 75 | #ifdef CONFIG_REGMAP |
74 | 76 | ||
@@ -701,9 +703,6 @@ int regmap_update_bits_base(struct regmap *map, unsigned int reg, | |||
701 | bool *change, bool async, bool force); | 703 | bool *change, bool async, bool force); |
702 | int regmap_write_bits(struct regmap *map, unsigned int reg, | 704 | int regmap_write_bits(struct regmap *map, unsigned int reg, |
703 | unsigned int mask, unsigned int val); | 705 | unsigned int mask, unsigned int val); |
704 | int regmap_update_bits_check(struct regmap *map, unsigned int reg, | ||
705 | unsigned int mask, unsigned int val, | ||
706 | bool *change); | ||
707 | int regmap_update_bits_check_async(struct regmap *map, unsigned int reg, | 706 | int regmap_update_bits_check_async(struct regmap *map, unsigned int reg, |
708 | unsigned int mask, unsigned int val, | 707 | unsigned int mask, unsigned int val, |
709 | bool *change); | 708 | bool *change); |
@@ -956,15 +955,6 @@ static inline int regmap_write_bits(struct regmap *map, unsigned int reg, | |||
956 | return -EINVAL; | 955 | return -EINVAL; |
957 | } | 956 | } |
958 | 957 | ||
959 | static inline int regmap_update_bits_check(struct regmap *map, | ||
960 | unsigned int reg, | ||
961 | unsigned int mask, unsigned int val, | ||
962 | bool *change) | ||
963 | { | ||
964 | WARN_ONCE(1, "regmap API is disabled"); | ||
965 | return -EINVAL; | ||
966 | } | ||
967 | |||
968 | static inline int regmap_update_bits_check_async(struct regmap *map, | 958 | static inline int regmap_update_bits_check_async(struct regmap *map, |
969 | unsigned int reg, | 959 | unsigned int reg, |
970 | unsigned int mask, | 960 | unsigned int mask, |