summaryrefslogtreecommitdiff
path: root/drivers/power/regulator/sandbox.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/power/regulator/sandbox.c')
-rw-r--r--drivers/power/regulator/sandbox.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/power/regulator/sandbox.c b/drivers/power/regulator/sandbox.c
index 2cca579a57..06c09fd051 100644
--- a/drivers/power/regulator/sandbox.c
+++ b/drivers/power/regulator/sandbox.c
@@ -234,7 +234,7 @@ static int buck_set_current(struct udevice *dev, int uA)
buck_current_range, uA);
}
-static bool buck_get_enable(struct udevice *dev)
+static int buck_get_enable(struct udevice *dev)
{
if (out_get_mode(dev) == BUCK_OM_OFF)
return false;
@@ -310,7 +310,7 @@ static int ldo_set_current(struct udevice *dev, int uA)
ldo_current_range, uA);
}
-static bool ldo_get_enable(struct udevice *dev)
+static int ldo_get_enable(struct udevice *dev)
{
if (out_get_mode(dev) == LDO_OM_OFF)
return false;