Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 343128
b: refs/heads/master
c: 7a4beda
h: refs/heads/master
v: v3
  • Loading branch information
Axel Lin authored and Mark Brown committed Nov 27, 2012
1 parent a271040 commit a15053e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 16 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 16ed9f0701d2bb06d96754ba1d3edbf9aa5faeef
refs/heads/master: 7a4beda0c6a87af26b7e2144842a0205fa9fd674
23 changes: 8 additions & 15 deletions trunk/drivers/regulator/as3711-regulator.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,24 +93,17 @@ static int as3711_bound_check(struct regulator_dev *rdev,

static int as3711_sel_check(int min, int max, int bottom, int step)
{
int ret, voltage;
int sel, voltage;

/* Round up min, when dividing: keeps us within the range */
ret = (min - bottom + step - 1) / step;
voltage = ret * step + bottom;
sel = DIV_ROUND_UP(min - bottom, step);
voltage = sel * step + bottom;
pr_debug("%s(): select %d..%d in %d+N*%d: %d\n", __func__,
min, max, bottom, step, ret);
if (voltage > max) {
/*
* Try 1 down. It will take us below min, but as long we stay
* above bottom, we're fine.
*/
ret--;
voltage = ret * step + bottom;
if (voltage < bottom)
return -EINVAL;
}
return ret;
min, max, bottom, step, sel);
if (voltage > max)
return -EINVAL;

return sel;
}

static int as3711_map_voltage_sd(struct regulator_dev *rdev,
Expand Down

0 comments on commit a15053e

Please sign in to comment.