diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/power/regulator/regulator-uclass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/regulator/regulator-uclass.c b/drivers/power/regulator/regulator-uclass.c index 0a1d1b36c0..426a933d66 100644 --- a/drivers/power/regulator/regulator-uclass.c +++ b/drivers/power/regulator/regulator-uclass.c @@ -96,7 +96,7 @@ int regulator_set_current(struct udevice *dev, int uA) return ops->set_current(dev, uA); } -bool regulator_get_enable(struct udevice *dev) +int regulator_get_enable(struct udevice *dev) { const struct dm_regulator_ops *ops = dev_get_driver_ops(dev); |