mirror of
https://xff.cz/git/u-boot/
synced 2025-11-02 19:36:22 +01:00
regulator: rk8xx: clarify operator precedence
My linter complains that the order isn't clear enough so let's put parentheses around the ternary condition to make it happy. Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de> Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com> Reviewed-by: Kever Yang <kever.yang@rock-chips.com> Reviewed-by: Simon Glass <sjg@chromium.org> Tested-by: Simon Glass <sjg@chromium.org> # chromebook-bob
This commit is contained in:
committed by
Kever Yang
parent
b7fffd1ef2
commit
62d0c3085e
@@ -520,7 +520,7 @@ static int _buck_get_enable(struct udevice *pmic, int buck)
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
return ret & mask ? true : false;
|
||||
return (ret & mask) ? true : false;
|
||||
}
|
||||
|
||||
static int _buck_set_suspend_enable(struct udevice *pmic, int buck, bool enable)
|
||||
@@ -585,7 +585,7 @@ static int _buck_get_suspend_enable(struct udevice *pmic, int buck)
|
||||
val = pmic_reg_read(pmic, RK816_REG_DCDC_SLP_EN);
|
||||
if (val < 0)
|
||||
return val;
|
||||
ret = val & mask ? 1 : 0;
|
||||
ret = (val & mask) ? 1 : 0;
|
||||
break;
|
||||
case RK806_ID:
|
||||
{
|
||||
@@ -608,7 +608,7 @@ static int _buck_get_suspend_enable(struct udevice *pmic, int buck)
|
||||
val = pmic_reg_read(pmic, REG_SLEEP_SET_OFF1);
|
||||
if (val < 0)
|
||||
return val;
|
||||
ret = val & mask ? 0 : 1;
|
||||
ret = (val & mask) ? 0 : 1;
|
||||
break;
|
||||
case RK809_ID:
|
||||
case RK817_ID:
|
||||
@@ -620,7 +620,7 @@ static int _buck_get_suspend_enable(struct udevice *pmic, int buck)
|
||||
val = pmic_reg_read(pmic, RK817_POWER_SLP_EN(0));
|
||||
if (val < 0)
|
||||
return val;
|
||||
ret = val & mask ? 1 : 0;
|
||||
ret = (val & mask) ? 1 : 0;
|
||||
break;
|
||||
default:
|
||||
ret = -EINVAL;
|
||||
@@ -723,7 +723,7 @@ static int _ldo_get_enable(struct udevice *pmic, int ldo)
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
return ret & mask ? true : false;
|
||||
return (ret & mask) ? true : false;
|
||||
}
|
||||
|
||||
static int _nldo_get_enable(struct udevice *pmic, int nldo)
|
||||
@@ -980,7 +980,7 @@ static int _ldo_get_suspend_enable(struct udevice *pmic, int ldo)
|
||||
val = pmic_reg_read(pmic, RK816_REG_LDO_SLP_EN);
|
||||
if (val < 0)
|
||||
return val;
|
||||
ret = val & mask ? 1 : 0;
|
||||
ret = (val & mask) ? 1 : 0;
|
||||
break;
|
||||
case RK808_ID:
|
||||
case RK818_ID:
|
||||
@@ -988,7 +988,7 @@ static int _ldo_get_suspend_enable(struct udevice *pmic, int ldo)
|
||||
val = pmic_reg_read(pmic, REG_SLEEP_SET_OFF2);
|
||||
if (val < 0)
|
||||
return val;
|
||||
ret = val & mask ? 0 : 1;
|
||||
ret = (val & mask) ? 0 : 1;
|
||||
break;
|
||||
case RK809_ID:
|
||||
case RK817_ID:
|
||||
@@ -997,13 +997,13 @@ static int _ldo_get_suspend_enable(struct udevice *pmic, int ldo)
|
||||
val = pmic_reg_read(pmic, RK817_POWER_SLP_EN(0));
|
||||
if (val < 0)
|
||||
return val;
|
||||
ret = val & mask ? 1 : 0;
|
||||
ret = (val & mask) ? 1 : 0;
|
||||
} else {
|
||||
mask = 1 << ldo;
|
||||
val = pmic_reg_read(pmic, RK817_POWER_SLP_EN(1));
|
||||
if (val < 0)
|
||||
return val;
|
||||
ret = val & mask ? 1 : 0;
|
||||
ret = (val & mask) ? 1 : 0;
|
||||
}
|
||||
break;
|
||||
}
|
||||
@@ -1438,7 +1438,7 @@ static int switch_get_enable(struct udevice *dev)
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
return ret & mask ? true : false;
|
||||
return (ret & mask) ? true : false;
|
||||
}
|
||||
|
||||
static int switch_set_suspend_value(struct udevice *dev, int uvolt)
|
||||
@@ -1493,21 +1493,21 @@ static int switch_get_suspend_enable(struct udevice *dev)
|
||||
val = pmic_reg_read(dev->parent, REG_SLEEP_SET_OFF1);
|
||||
if (val < 0)
|
||||
return val;
|
||||
ret = val & mask ? 0 : 1;
|
||||
ret = (val & mask) ? 0 : 1;
|
||||
break;
|
||||
case RK809_ID:
|
||||
mask = 1 << (sw + 6);
|
||||
val = pmic_reg_read(dev->parent, RK817_POWER_SLP_EN(0));
|
||||
if (val < 0)
|
||||
return val;
|
||||
ret = val & mask ? 1 : 0;
|
||||
ret = (val & mask) ? 1 : 0;
|
||||
break;
|
||||
case RK818_ID:
|
||||
mask = 1 << 6;
|
||||
val = pmic_reg_read(dev->parent, REG_SLEEP_SET_OFF1);
|
||||
if (val < 0)
|
||||
return val;
|
||||
ret = val & mask ? 0 : 1;
|
||||
ret = (val & mask) ? 0 : 1;
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user