diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-08-09 11:34:29 +0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-08-22 15:32:22 +0400 |
commit | 50eeef5d3cea5afcced17a0410e8b0bf88997845 (patch) | |
tree | 192eef21bf6b656755a18b4f4fb218462a5ec359 /include | |
parent | d6c645fc00777a6f8a7df1f580065ec30c71be7b (diff) | |
download | linux-50eeef5d3cea5afcced17a0410e8b0bf88997845.tar.xz |
mfd: Convert WM8400 to regmap API
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mfd/wm8400-private.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/linux/mfd/wm8400-private.h b/include/linux/mfd/wm8400-private.h index 2aab4e93a5c9..0147b6968510 100644 --- a/include/linux/mfd/wm8400-private.h +++ b/include/linux/mfd/wm8400-private.h @@ -25,16 +25,15 @@ #include <linux/mutex.h> #include <linux/platform_device.h> +struct regmap; + #define WM8400_REGISTER_COUNT 0x55 struct wm8400 { struct device *dev; - int (*read_dev)(void *data, char reg, int count, u16 *dst); - int (*write_dev)(void *data, char reg, int count, const u16 *src); - struct mutex io_lock; - void *io_data; + struct regmap *regmap; u16 reg_cache[WM8400_REGISTER_COUNT]; |