aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/regmap.h
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2016-02-15 00:23:17 -0500
committerMark Brown <broonie@kernel.org>2016-02-19 11:15:56 -0500
commit98c2dc48694a47109fff430a216fc13a9b45a4a1 (patch)
tree5560238b115987fe0e8090dad412a57d9cdf8e05 /include/linux/regmap.h
parent30ed9cb7a49b499ebc6061e4ff38e88cb4857cad (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.h14
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);
702int regmap_write_bits(struct regmap *map, unsigned int reg, 704int regmap_write_bits(struct regmap *map, unsigned int reg,
703 unsigned int mask, unsigned int val); 705 unsigned int mask, unsigned int val);
704int regmap_update_bits_check(struct regmap *map, unsigned int reg,
705 unsigned int mask, unsigned int val,
706 bool *change);
707int regmap_update_bits_check_async(struct regmap *map, unsigned int reg, 706int 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
959static 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
968static inline int regmap_update_bits_check_async(struct regmap *map, 958static 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,