mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-25 06:46:00 +00:00
adc: Use regulator_set_enable_if_allowed
With the commit 4fcba5d556
("regulator: implement basic reference
counter") the return value of regulator_set_enable may be EALREADY or
EBUSY for fixed/gpio regulators.
Change to use the more relaxed regulator_set_enable_if_allowed to
continue if regulator already was enabled or disabled.
Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
Reviewed-by: Simon Glass <sjg@chromium.org>
Tested-by: Simon Glass <sjg@chromium.org> # rockpro64-rk3399
This commit is contained in:
parent
321d7b4d87
commit
d82cbc596e
1 changed files with 10 additions and 12 deletions
|
@ -51,23 +51,21 @@ static int check_channel(struct udevice *dev, int value, bool number_or_mask,
|
|||
static int adc_supply_enable(struct udevice *dev)
|
||||
{
|
||||
struct adc_uclass_plat *uc_pdata = dev_get_uclass_plat(dev);
|
||||
const char *supply_type;
|
||||
int ret = 0;
|
||||
int ret;
|
||||
|
||||
if (uc_pdata->vdd_supply) {
|
||||
supply_type = "vdd";
|
||||
ret = regulator_set_enable(uc_pdata->vdd_supply, true);
|
||||
ret = regulator_set_enable_if_allowed(uc_pdata->vdd_supply, true);
|
||||
if (ret && ret != -ENOSYS) {
|
||||
pr_err("%s: can't enable vdd-supply!", dev->name);
|
||||
return ret;
|
||||
}
|
||||
|
||||
if (!ret && uc_pdata->vss_supply) {
|
||||
supply_type = "vss";
|
||||
ret = regulator_set_enable(uc_pdata->vss_supply, true);
|
||||
ret = regulator_set_enable_if_allowed(uc_pdata->vss_supply, true);
|
||||
if (ret && ret != -ENOSYS) {
|
||||
pr_err("%s: can't enable vss-supply!", dev->name);
|
||||
return ret;
|
||||
}
|
||||
|
||||
if (ret)
|
||||
pr_err("%s: can't enable %s-supply!", dev->name, supply_type);
|
||||
|
||||
return ret;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int adc_data_mask(struct udevice *dev, unsigned int *data_mask)
|
||||
|
|
Loading…
Add table
Reference in a new issue