* [PATCH] regulator: lp872x: Remove _rdev_to_offset() function
@ 2013-01-18 2:29 Axel Lin
2013-01-18 3:41 ` Kim, Milo
2013-01-18 6:25 ` Mark Brown
0 siblings, 2 replies; 4+ messages in thread
From: Axel Lin @ 2013-01-18 2:29 UTC (permalink / raw)
To: Mark Brown; +Cc: Milo Kim, Liam Girdwood, linux-kernel
There is only one caller calling _rdev_to_offset(), and the code
looks simper if we remove _rdev_to_offset(). Thus remove it.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
drivers/regulator/lp872x.c | 32 +++++---------------------------
1 file changed, 5 insertions(+), 27 deletions(-)
diff --git a/drivers/regulator/lp872x.c b/drivers/regulator/lp872x.c
index 9289ead..41bdbbe 100644
--- a/drivers/regulator/lp872x.c
+++ b/drivers/regulator/lp872x.c
@@ -181,20 +181,6 @@ static inline int lp872x_update_bits(struct lp872x *lp, u8 addr,
return regmap_update_bits(lp->regmap, addr, mask, data);
}
-static int _rdev_to_offset(struct regulator_dev *rdev)
-{
- enum lp872x_regulator_id id = rdev_get_id(rdev);
-
- switch (id) {
- case LP8720_ID_LDO1 ... LP8720_ID_BUCK:
- return id;
- case LP8725_ID_LDO1 ... LP8725_ID_BUCK2:
- return id - LP8725_ID_BASE;
- default:
- return -EINVAL;
- }
-}
-
static int lp872x_get_timestep_usec(struct lp872x *lp)
{
enum lp872x_id chip = lp->chipid;
@@ -236,26 +222,18 @@ static int lp872x_regulator_enable_time(struct regulator_dev *rdev)
struct lp872x *lp = rdev_get_drvdata(rdev);
enum lp872x_regulator_id regulator = rdev_get_id(rdev);
int time_step_us = lp872x_get_timestep_usec(lp);
- int ret, offset;
+ int ret;
u8 addr, val;
if (time_step_us < 0)
return -EINVAL;
switch (regulator) {
- case LP8720_ID_LDO1 ... LP8720_ID_LDO5:
- case LP8725_ID_LDO1 ... LP8725_ID_LILO2:
- offset = _rdev_to_offset(rdev);
- if (offset < 0)
- return -EINVAL;
-
- addr = LP872X_LDO1_VOUT + offset;
- break;
- case LP8720_ID_BUCK:
- addr = LP8720_BUCK_VOUT1;
+ case LP8720_ID_LDO1 ... LP8720_ID_BUCK:
+ addr = LP872X_LDO1_VOUT + regulator;
break;
- case LP8725_ID_BUCK1:
- addr = LP8725_BUCK1_VOUT1;
+ case LP8725_ID_LDO1 ... LP8725_ID_BUCK1:
+ addr = LP872X_LDO1_VOUT + regulator - LP8725_ID_BASE;
break;
case LP8725_ID_BUCK2:
addr = LP8725_BUCK2_VOUT1;
--
1.7.9.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* RE: [PATCH] regulator: lp872x: Remove _rdev_to_offset() function
2013-01-18 2:29 [PATCH] regulator: lp872x: Remove _rdev_to_offset() function Axel Lin
@ 2013-01-18 3:41 ` Kim, Milo
2013-01-18 6:25 ` Mark Brown
1 sibling, 0 replies; 4+ messages in thread
From: Kim, Milo @ 2013-01-18 3:41 UTC (permalink / raw)
To: Axel Lin; +Cc: Mark Brown, Liam Girdwood, linux-kernel@vger.kernel.org
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="utf-8", Size: 328 bytes --]
> There is only one caller calling _rdev_to_offset(), and the code
> looks simper if we remove _rdev_to_offset(). Thus remove it.
Acked-by: Milo Kim <milo.kim@ti.com>
ÿôèº{.nÇ+·®+%Ëÿ±éݶ\x17¥wÿº{.nÇ+·¥{±þG«éÿ{ayº\x1dÊÚë,j\a¢f£¢·hïêÿêçz_è®\x03(éÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?¨èÚ&£ø§~á¶iOæ¬z·vØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?I¥
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] regulator: lp872x: Remove _rdev_to_offset() function
2013-01-18 2:29 [PATCH] regulator: lp872x: Remove _rdev_to_offset() function Axel Lin
2013-01-18 3:41 ` Kim, Milo
@ 2013-01-18 6:25 ` Mark Brown
[not found] ` <CAFRkauDrC56esDk_NK9aEbxrzUZMC=eeD_hQSwG1JLNBY0Bh0A@mail.gmail.com>
1 sibling, 1 reply; 4+ messages in thread
From: Mark Brown @ 2013-01-18 6:25 UTC (permalink / raw)
To: Axel Lin; +Cc: Milo Kim, Liam Girdwood, linux-kernel
On Fri, Jan 18, 2013 at 10:29:59AM +0800, Axel Lin wrote:
> There is only one caller calling _rdev_to_offset(), and the code
> looks simper if we remove _rdev_to_offset(). Thus remove it.
This doesn't seem to apply to topic/lp872x?
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] regulator: lp872x: Remove _rdev_to_offset() function
[not found] ` <CAFRkauDrC56esDk_NK9aEbxrzUZMC=eeD_hQSwG1JLNBY0Bh0A@mail.gmail.com>
@ 2013-01-18 7:07 ` Mark Brown
0 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2013-01-18 7:07 UTC (permalink / raw)
To: Axel Lin; +Cc: Milo Kim, Liam Girdwood, linux-kernel@vger.kernel.org
On Fri, Jan 18, 2013 at 03:04:59PM +0800, Axel Lin wrote:
> 2013/1/18 Mark Brown <broonie@opensource.wolfsonmicro.com>
> > On Fri, Jan 18, 2013 at 10:29:59AM +0800, Axel Lin wrote:
> > > There is only one caller calling _rdev_to_offset(), and the code
> > > looks simper if we remove _rdev_to_offset(). Thus remove it.
> > This doesn't seem to apply to topic/lp872x?
> I cannot find topic/lp872x branch on your tree.
> I generate the patch against linux-next.
I'd forgotten to push it out, done now - actually looks to be pretty
much the same code.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-01-18 7:07 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-18 2:29 [PATCH] regulator: lp872x: Remove _rdev_to_offset() function Axel Lin
2013-01-18 3:41 ` Kim, Milo
2013-01-18 6:25 ` Mark Brown
[not found] ` <CAFRkauDrC56esDk_NK9aEbxrzUZMC=eeD_hQSwG1JLNBY0Bh0A@mail.gmail.com>
2013-01-18 7:07 ` Mark Brown
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.