Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 343127
b: refs/heads/master
c: 16ed9f0
h: refs/heads/master
i:
  343125: 9b77126
  343123: 82ee6ed
  343119: 89166df
v: v3
  • Loading branch information
Axel Lin authored and Mark Brown committed Nov 27, 2012
1 parent 17570f6 commit a271040
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 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: f1e64f90269c197a0619535917210543c0112fcc
refs/heads/master: 16ed9f0701d2bb06d96754ba1d3edbf9aa5faeef
9 changes: 3 additions & 6 deletions trunk/drivers/regulator/as3711-regulator.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,17 +69,14 @@ static int as3711_list_voltage_dldo(struct regulator_dev *rdev,
static int as3711_bound_check(struct regulator_dev *rdev,
int *min_uV, int *max_uV)
{
struct as3711_regulator_info *info = container_of(rdev->desc,
struct as3711_regulator_info, desc);
struct as3711_regulator *reg = rdev->reg_data;

WARN_ON(reg->reg_info != info);
struct as3711_regulator *reg = rdev_get_drvdata(rdev);
struct as3711_regulator_info *info = reg->reg_info;

dev_dbg(&rdev->dev, "%s(), %d, %d, %d\n", __func__,
*min_uV, rdev->desc->min_uV, info->max_uV);

if (*max_uV < *min_uV ||
*min_uV >= info->max_uV || rdev->desc->min_uV >= *max_uV)
*min_uV > info->max_uV || rdev->desc->min_uV > *max_uV)
return -EINVAL;

if (rdev->desc->n_voltages == 1)
Expand Down

0 comments on commit a271040

Please sign in to comment.