usb: host: ehci-generic: Remove DM_REGULATOR flag
authorPatrice Chotard <patrice.chotard@foss.st.com>
Fri, 6 May 2022 06:22:35 +0000 (08:22 +0200)
committerMarek Vasut <marex@denx.de>
Fri, 6 May 2022 08:38:39 +0000 (10:38 +0200)
Since commit 16cc5ad0b439 ("power: regulator: add dummy helper")
regulator dummy helper are always available even if DM_REGULATOR
is not set.
DM_REGULATOR flag is no more needed to protect no DM core,
remove it.

Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
drivers/usb/host/ehci-generic.c

index 8760169..4734af0 100644 (file)
@@ -26,12 +26,9 @@ struct generic_ehci {
        struct clk_bulk clocks;
        struct reset_ctl_bulk resets;
        struct phy phy;
-#ifdef CONFIG_DM_REGULATOR
        struct udevice *vbus_supply;
-#endif
 };
 
-#ifdef CONFIG_DM_REGULATOR
 static int ehci_enable_vbus_supply(struct udevice *dev)
 {
        struct generic_ehci *priv = dev_get_priv(dev);
@@ -62,17 +59,6 @@ static int ehci_disable_vbus_supply(struct generic_ehci *priv)
        else
                return 0;
 }
-#else
-static int ehci_enable_vbus_supply(struct udevice *dev)
-{
-       return 0;
-}
-
-static int ehci_disable_vbus_supply(struct generic_ehci *priv)
-{
-       return 0;
-}
-#endif
 
 static int ehci_usb_probe(struct udevice *dev)
 {