mirror of https://gitee.com/openkylin/linux.git
Merge remote-tracking branch 'regulator/topic/max8998' into regulator-next
This commit is contained in:
commit
e11c4515e3
|
@ -311,25 +311,13 @@ static int max8998_set_voltage_buck_sel(struct regulator_dev *rdev,
|
||||||
dev_get_platdata(max8998->iodev->dev);
|
dev_get_platdata(max8998->iodev->dev);
|
||||||
struct i2c_client *i2c = max8998->iodev->i2c;
|
struct i2c_client *i2c = max8998->iodev->i2c;
|
||||||
int buck = rdev_get_id(rdev);
|
int buck = rdev_get_id(rdev);
|
||||||
int reg, shift = 0, mask, ret;
|
int reg, shift = 0, mask, ret, j;
|
||||||
int j, previous_sel;
|
|
||||||
static u8 buck1_last_val;
|
static u8 buck1_last_val;
|
||||||
|
|
||||||
ret = max8998_get_voltage_register(rdev, ®, &shift, &mask);
|
ret = max8998_get_voltage_register(rdev, ®, &shift, &mask);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
previous_sel = max8998_get_voltage_sel(rdev);
|
|
||||||
|
|
||||||
/* Check if voltage needs to be changed */
|
|
||||||
/* if previous_voltage equal new voltage, return */
|
|
||||||
if (previous_sel == selector) {
|
|
||||||
dev_dbg(max8998->dev, "No voltage change, old:%d, new:%d\n",
|
|
||||||
regulator_list_voltage_linear(rdev, previous_sel),
|
|
||||||
regulator_list_voltage_linear(rdev, selector));
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (buck) {
|
switch (buck) {
|
||||||
case MAX8998_BUCK1:
|
case MAX8998_BUCK1:
|
||||||
dev_dbg(max8998->dev,
|
dev_dbg(max8998->dev,
|
||||||
|
|
Loading…
Reference in New Issue