[PATCH 2/2] usb: host: ehci-generic: Remove DM_REGULATOR flag
Patrice Chotard
patrice.chotard at foss.st.com
Thu May 5 15:17:59 CEST 2022
Currently, DM_REGULATOR flag is no more needed to protect no DM core,
remove it.
Signed-off-by: Patrice Chotard <patrice.chotard at foss.st.com>
---
drivers/usb/host/ehci-generic.c | 14 --------------
1 file changed, 14 deletions(-)
diff --git a/drivers/usb/host/ehci-generic.c b/drivers/usb/host/ehci-generic.c
index 5856e898a8..9c385d8c33 100644
--- a/drivers/usb/host/ehci-generic.c
+++ b/drivers/usb/host/ehci-generic.c
@@ -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)
{
--
2.25.1
More information about the U-Boot
mailing list