aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd/tps65090.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2012-04-17 05:08:56 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-04-18 12:42:04 -0400
commit06c4998be96f2e1f304cf79d5e9d1662d864f7d1 (patch)
tree9a898aa3617998d8708d83c04a89da0044740a56 /drivers/mfd/tps65090.c
parentee7b19142d0e7b88a981fd50b9b8758f697b459e (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 'drivers/mfd/tps65090.c')
-rw-r--r--drivers/mfd/tps65090.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/drivers/mfd/tps65090.c b/drivers/mfd/tps65090.c
index a66d4df51293..47f802bf1848 100644
--- a/drivers/mfd/tps65090.c
+++ b/drivers/mfd/tps65090.c
@@ -78,17 +78,6 @@ static struct mfd_cell tps65090s[] = {
78 }, 78 },
79}; 79};
80 80
81struct tps65090 {
82 struct mutex lock;
83 struct device *dev;
84 struct i2c_client *client;
85 struct regmap *rmap;
86 struct irq_chip irq_chip;
87 struct mutex irq_lock;
88 int irq_base;
89 unsigned int id;
90};
91
92int tps65090_write(struct device *dev, int reg, uint8_t val) 81int tps65090_write(struct device *dev, int reg, uint8_t val)
93{ 82{
94 struct tps65090 *tps = dev_get_drvdata(dev); 83 struct tps65090 *tps = dev_get_drvdata(dev);