Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 323329
b: refs/heads/master
c: f1dcf9e
h: refs/heads/master
i:
  323327: cf682e1
v: v3
  • Loading branch information
Axel Lin authored and Mark Brown committed Aug 28, 2012
1 parent a3a439d commit 1f4f4ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 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: 8db98440facad7e3a194f21ce6069e04bff336c6
refs/heads/master: f1dcf9e4ed3261bdb22fead50e8bed7bd569bd2a
12 changes: 3 additions & 9 deletions trunk/drivers/regulator/mc13892-regulator.c
Original file line number Diff line number Diff line change
Expand Up @@ -393,11 +393,11 @@ static struct regulator_ops mc13892_gpo_regulator_ops = {
.get_voltage = mc13xxx_fixed_regulator_get_voltage,
};

static int mc13892_sw_regulator_get_voltage(struct regulator_dev *rdev)
static int mc13892_sw_regulator_get_voltage_sel(struct regulator_dev *rdev)
{
struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
int ret, id = rdev_get_id(rdev);
unsigned int val, hi;
unsigned int val;

dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);

Expand All @@ -408,17 +408,11 @@ static int mc13892_sw_regulator_get_voltage(struct regulator_dev *rdev)
if (ret)
return ret;

hi = val & MC13892_SWITCHERS0_SWxHI;
val = (val & mc13892_regulators[id].vsel_mask)
>> mc13892_regulators[id].vsel_shift;

dev_dbg(rdev_get_dev(rdev), "%s id: %d val: %d\n", __func__, id, val);

if (hi)
val = (25000 * val) + 1100000;
else
val = (25000 * val) + 600000;

return val;
}

Expand Down Expand Up @@ -453,7 +447,7 @@ static int mc13892_sw_regulator_set_voltage_sel(struct regulator_dev *rdev,
static struct regulator_ops mc13892_sw_regulator_ops = {
.list_voltage = regulator_list_voltage_table,
.set_voltage_sel = mc13892_sw_regulator_set_voltage_sel,
.get_voltage = mc13892_sw_regulator_get_voltage,
.get_voltage_sel = mc13892_sw_regulator_get_voltage_sel,
};

static int mc13892_vcam_set_mode(struct regulator_dev *rdev, unsigned int mode)
Expand Down

0 comments on commit 1f4f4ec

Please sign in to comment.