aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/regmap.h
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2013-09-01 20:24:50 -0700
committerMark Brown <broonie@linaro.org>2013-09-17 00:12:23 +0100
commitfdf200290581150f7b69148abf6ca860684cbfbb (patch)
tree704fcc316e72e34ffc81dda2bf150ed1aa610bcb /include/linux/regmap.h
parentLinux 3.12-rc1 (diff)
downloadlinux-dev-fdf200290581150f7b69148abf6ca860684cbfbb.tar.xz
linux-dev-fdf200290581150f7b69148abf6ca860684cbfbb.zip
regmap: add regmap_field_update_bits()
Current regmap_field is supporting read/write functions. This patch adds new update_bits function for it. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'include/linux/regmap.h')
-rw-r--r--include/linux/regmap.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/regmap.h b/include/linux/regmap.h
index a10380bfbeac..4c8c20a7a75d 100644
--- a/include/linux/regmap.h
+++ b/include/linux/regmap.h
@@ -448,6 +448,8 @@ void devm_regmap_field_free(struct device *dev, struct regmap_field *field);
int regmap_field_read(struct regmap_field *field, unsigned int *val);
int regmap_field_write(struct regmap_field *field, unsigned int val);
+int regmap_field_update_bits(struct regmap_field *field,
+ unsigned int mask, unsigned int val);
/**
* Description of an IRQ for the generic regmap irq_chip.