mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 13:43:28 +00:00
misc: ub251xb: Fix use of CONFIG_IS_ENABLED on DM_REGULATOR
The DM_REGULATOR symbol has SPL counterpart in: drivers/power/regulator/Kconfig:config SPL_DM_REGULATOR Use CONFIG_IS_ENABLED() macro to match on the correct variant depending on the build stage. Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
19d0c64f89
commit
7d39feb137
1 changed files with 2 additions and 2 deletions
|
@ -334,7 +334,7 @@ static int usb251xb_probe(struct udevice *dev)
|
|||
struct usb251xb *hub = dev_get_priv(dev);
|
||||
int err;
|
||||
|
||||
if (IS_ENABLED(CONFIG_DM_REGULATOR) && hub->vdd) {
|
||||
if (CONFIG_IS_ENABLED(DM_REGULATOR) && hub->vdd) {
|
||||
err = regulator_set_enable(hub->vdd, true);
|
||||
if (err)
|
||||
return err;
|
||||
|
@ -391,7 +391,7 @@ static int usb251xb_of_to_plat(struct udevice *dev)
|
|||
return err;
|
||||
}
|
||||
|
||||
if (IS_ENABLED(CONFIG_DM_REGULATOR)) {
|
||||
if (CONFIG_IS_ENABLED(DM_REGULATOR)) {
|
||||
err = device_get_supply_regulator(dev, "vdd-supply",
|
||||
&hub->vdd);
|
||||
if (err && err != -ENOENT) {
|
||||
|
|
Loading…
Reference in a new issue