power: regulator: pfuze100: get_enable should return integer

get_enable should be able to return error values. Hence change
the return type to integer.

Signed-off-by: Keerthy <j-keerthy@ti.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Keerthy 2017-06-13 09:53:50 +05:30 committed by Jaehoon Chung
parent 5c3195c61b
commit 117daa8220

View file

@ -524,7 +524,7 @@ static int pfuze100_regulator_set_value(struct udevice *dev, int uV)
return pfuze100_regulator_val(dev, PMIC_OP_SET, &uV);
}
static bool pfuze100_regulator_get_enable(struct udevice *dev)
static int pfuze100_regulator_get_enable(struct udevice *dev)
{
int ret;
bool enable = false;