diff options
author | Axel Lin <axel.lin@gmail.com> | 2012-04-17 05:08:56 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-04-18 12:42:04 -0400 |
commit | 06c4998be96f2e1f304cf79d5e9d1662d864f7d1 (patch) | |
tree | 9a898aa3617998d8708d83c04a89da0044740a56 /include/linux/mfd | |
parent | ee7b19142d0e7b88a981fd50b9b8758f697b459e (diff) |
regulator: tps65090: Use generic regmap enable/disable operations
This patch converts tps65090 regulator driver to use generic regmap
enable/disable operations.
Also move struct tps65090 to include/linux/mfd/tps65090.h because
the regulator driver needs to access the rmap field of struct tps65090.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Venu Byravarasu <vbyravarasu@nvidia.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'include/linux/mfd')
-rw-r--r-- | include/linux/mfd/tps65090.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/linux/mfd/tps65090.h b/include/linux/mfd/tps65090.h index 38e31c55adbb..6bc31d854626 100644 --- a/include/linux/mfd/tps65090.h +++ b/include/linux/mfd/tps65090.h | |||
@@ -22,6 +22,19 @@ | |||
22 | #ifndef __LINUX_MFD_TPS65090_H | 22 | #ifndef __LINUX_MFD_TPS65090_H |
23 | #define __LINUX_MFD_TPS65090_H | 23 | #define __LINUX_MFD_TPS65090_H |
24 | 24 | ||
25 | #include <linux/irq.h> | ||
26 | |||
27 | struct tps65090 { | ||
28 | struct mutex lock; | ||
29 | struct device *dev; | ||
30 | struct i2c_client *client; | ||
31 | struct regmap *rmap; | ||
32 | struct irq_chip irq_chip; | ||
33 | struct mutex irq_lock; | ||
34 | int irq_base; | ||
35 | unsigned int id; | ||
36 | }; | ||
37 | |||
25 | struct tps65090_subdev_info { | 38 | struct tps65090_subdev_info { |
26 | int id; | 39 | int id; |
27 | const char *name; | 40 | const char *name; |