diff options
author | Balaji T K <balajitk@ti.com> | 2009-12-13 15:23:33 -0500 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2009-12-13 15:23:33 -0500 |
commit | fc7b92fca4e546184557f1c53f84ad57c66b7695 (patch) | |
tree | f15b37df7d34f525d877d33186b840947aa65b4d /drivers/regulator | |
parent | b07682b6056eb6701f8cb86aa5800e6f2ea7919b (diff) |
mfd: Rename all twl4030_i2c*
This patch renames function names like twl4030_i2c_write_u8,
twl4030_i2c_read_u8 to twl_i2c_write_u8, twl_i2c_read_u8
and also common variable in twl-core.c
Signed-off-by: Rajendra Nayak <rnayak@ti.com>
Signed-off-by: Balaji T K <balajitk@ti.com>
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Acked-by: Kevin Hilman <khilman@deeprootsystems.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/twl-regulator.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/regulator/twl-regulator.c b/drivers/regulator/twl-regulator.c index c8a6e583d773..8cc46e99ccca 100644 --- a/drivers/regulator/twl-regulator.c +++ b/drivers/regulator/twl-regulator.c | |||
@@ -64,7 +64,7 @@ twl4030reg_read(struct twlreg_info *info, unsigned offset) | |||
64 | u8 value; | 64 | u8 value; |
65 | int status; | 65 | int status; |
66 | 66 | ||
67 | status = twl4030_i2c_read_u8(TWL4030_MODULE_PM_RECEIVER, | 67 | status = twl_i2c_read_u8(TWL4030_MODULE_PM_RECEIVER, |
68 | &value, info->base + offset); | 68 | &value, info->base + offset); |
69 | return (status < 0) ? status : value; | 69 | return (status < 0) ? status : value; |
70 | } | 70 | } |
@@ -72,7 +72,7 @@ twl4030reg_read(struct twlreg_info *info, unsigned offset) | |||
72 | static inline int | 72 | static inline int |
73 | twl4030reg_write(struct twlreg_info *info, unsigned offset, u8 value) | 73 | twl4030reg_write(struct twlreg_info *info, unsigned offset, u8 value) |
74 | { | 74 | { |
75 | return twl4030_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER, | 75 | return twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER, |
76 | value, info->base + offset); | 76 | value, info->base + offset); |
77 | } | 77 | } |
78 | 78 | ||
@@ -171,12 +171,12 @@ static int twl4030reg_set_mode(struct regulator_dev *rdev, unsigned mode) | |||
171 | if (!(status & (P3_GRP | P2_GRP | P1_GRP))) | 171 | if (!(status & (P3_GRP | P2_GRP | P1_GRP))) |
172 | return -EACCES; | 172 | return -EACCES; |
173 | 173 | ||
174 | status = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, | 174 | status = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, |
175 | message >> 8, 0x15 /* PB_WORD_MSB */ ); | 175 | message >> 8, 0x15 /* PB_WORD_MSB */ ); |
176 | if (status >= 0) | 176 | if (status >= 0) |
177 | return status; | 177 | return status; |
178 | 178 | ||
179 | return twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, | 179 | return twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, |
180 | message, 0x16 /* PB_WORD_LSB */ ); | 180 | message, 0x16 /* PB_WORD_LSB */ ); |
181 | } | 181 | } |
182 | 182 | ||