power: regulator: fixed: 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>
master
Keerthy 7 years ago committed by Jaehoon Chung
parent 06bdf6003b
commit 0f2194d825
  1. 2
      drivers/power/regulator/fixed.c

@ -89,7 +89,7 @@ static int fixed_regulator_get_current(struct udevice *dev)
return uc_pdata->min_uA;
}
static bool fixed_regulator_get_enable(struct udevice *dev)
static int fixed_regulator_get_enable(struct udevice *dev)
{
struct fixed_regulator_platdata *dev_pdata = dev_get_platdata(dev);

Loading…
Cancel
Save