Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 292041
b: refs/heads/master
c: 8148ed6
h: refs/heads/master
i:
  292039: 361e6e9
v: v3
  • Loading branch information
Axel Lin authored and Mark Brown committed Mar 11, 2012
1 parent 2065cce commit 5980be4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: b21bcd1ada026cd90243311e89dd8d999fe0a227
refs/heads/master: 8148ed6e6618598729efa53d3a1f905379de801e
4 changes: 2 additions & 2 deletions trunk/drivers/regulator/ad5398.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ static int ad5398_set_current_limit(struct regulator_dev *rdev, int min_uA, int
if (max_uA > chip->max_uA || max_uA < chip->min_uA)
return -EINVAL;

selector = ((min_uA - chip->min_uA) * chip->current_level +
range_uA - 1) / range_uA;
selector = DIV_ROUND_UP((min_uA - chip->min_uA) * chip->current_level,
range_uA);
if (ad5398_calc_current(chip, selector) > max_uA)
return -EINVAL;

Expand Down

0 comments on commit 5980be4

Please sign in to comment.