提交 5c3195c6 编写于 作者: K Keerthy 提交者: Jaehoon Chung

power: regulator: palmas: get_enable should return integer

get_enable should be able to return error values. Hence change
the return type to integer.
Signed-off-by: NKeerthy <j-keerthy@ti.com>
Reviewed-by: NSimon Glass <sjg@chromium.org>
上级 b616835d
......@@ -304,7 +304,7 @@ static int ldo_set_value(struct udevice *dev, int uV)
return palmas_ldo_val(dev, PMIC_OP_SET, &uV);
}
static bool ldo_get_enable(struct udevice *dev)
static int ldo_get_enable(struct udevice *dev)
{
bool enable = false;
int ret;
......@@ -411,7 +411,7 @@ static int smps_set_value(struct udevice *dev, int uV)
return palmas_smps_val(dev, PMIC_OP_SET, &uV);
}
static bool smps_get_enable(struct udevice *dev)
static int smps_get_enable(struct udevice *dev)
{
bool enable = false;
int ret;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册