]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
usb: ehci: Make usage of generic_{setup,shutdown}_phy() helpers
authorPatrice Chotard <patrice.chotard@foss.st.com>
Tue, 6 Sep 2022 06:15:28 +0000 (08:15 +0200)
committerMarek Vasut <marex@denx.de>
Mon, 10 Oct 2022 16:08:18 +0000 (18:08 +0200)
Replace ehci_setup_phy() and ehci_shutdown_phy () by respectively
generic_setup_phy() and generic_shutdown_phy().

Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
Cc: Marek Vasut <marex@denx.de>
Cc: Simon Glass <sjg@chromium.org>
drivers/usb/host/ehci-generic.c
drivers/usb/host/ehci-msm.c
drivers/usb/host/ehci-mx6.c
drivers/usb/host/ehci-pci.c

index 75c73bfe4e836f846353385598f16a0b150b1dc7..a765a307a323a8fbe54379135fc6839a65971a48 100644 (file)
@@ -96,7 +96,7 @@ static int ehci_usb_probe(struct udevice *dev)
        if (err)
                goto reset_err;
 
-       err = ehci_setup_phy(dev, &priv->phy, 0);
+       err = generic_setup_phy(dev, &priv->phy, 0);
        if (err)
                goto regulator_err;
 
@@ -111,7 +111,7 @@ static int ehci_usb_probe(struct udevice *dev)
        return 0;
 
 phy_err:
-       ret = ehci_shutdown_phy(dev, &priv->phy);
+       ret = generic_shutdown_phy(&priv->phy);
        if (ret)
                dev_err(dev, "failed to shutdown usb phy (ret=%d)\n", ret);
 
@@ -141,7 +141,7 @@ static int ehci_usb_remove(struct udevice *dev)
        if (ret)
                return ret;
 
-       ret = ehci_shutdown_phy(dev, &priv->phy);
+       ret = generic_shutdown_phy(&priv->phy);
        if (ret)
                return ret;
 
index d160cf019d3c99393f9721a83ee5f8beb615be3c..dd0d153500cb98d69d10e3c4fb3e89a0ab8b627f 100644 (file)
@@ -56,7 +56,7 @@ static int ehci_usb_probe(struct udevice *dev)
        hcor = (struct ehci_hcor *)((phys_addr_t)hccr +
                        HC_LENGTH(ehci_readl(&(hccr)->cr_capbase)));
 
-       ret = ehci_setup_phy(dev, &p->phy, 0);
+       ret = generic_setup_phy(dev, &p->phy, 0);
        if (ret)
                return ret;
 
@@ -81,7 +81,7 @@ static int ehci_usb_remove(struct udevice *dev)
        /* Stop controller. */
        clrbits_le32(&ehci->usbcmd, CMD_RUN);
 
-       ret = ehci_shutdown_phy(dev, &p->phy);
+       ret = generic_shutdown_phy(&p->phy);
        if (ret)
                return ret;
 
index e30449b55e473e6bc148e471cd90ea69377b4396..fa2ca2a1d9128b2826c21e2a041e030c68dad202 100644 (file)
@@ -726,7 +726,7 @@ static int ehci_usb_probe(struct udevice *dev)
        mdelay(10);
 
 #if defined(CONFIG_PHY)
-       ret = ehci_setup_phy(dev, &priv->phy, 0);
+       ret = generic_setup_phy(dev, &priv->phy, 0);
        if (ret)
                goto err_regulator;
 #endif
@@ -743,7 +743,7 @@ static int ehci_usb_probe(struct udevice *dev)
 
 err_phy:
 #if defined(CONFIG_PHY)
-       ehci_shutdown_phy(dev, &priv->phy);
+       generic_shutdown_phy(&priv->phy);
 err_regulator:
 #endif
 #if CONFIG_IS_ENABLED(DM_REGULATOR)
@@ -767,7 +767,7 @@ int ehci_usb_remove(struct udevice *dev)
        ehci_deregister(dev);
 
 #if defined(CONFIG_PHY)
-       ehci_shutdown_phy(dev, &priv->phy);
+       generic_shutdown_phy(&priv->phy);
 #endif
 
 #if CONFIG_IS_ENABLED(DM_REGULATOR)
index 1ab306147fab0f2a7882704c3fca69b68c747535..e98ab312618daac821c7dcf8485e251f27101d7f 100644 (file)
@@ -31,7 +31,7 @@ static int ehci_pci_init(struct udevice *dev, struct ehci_hccr **ret_hccr,
        int ret;
        u32 cmd;
 
-       ret = ehci_setup_phy(dev, &priv->phy, 0);
+       ret = generic_setup_phy(dev, &priv->phy, 0);
        if (ret)
                return ret;
 
@@ -149,7 +149,7 @@ static int ehci_pci_remove(struct udevice *dev)
        if (ret)
                return ret;
 
-       return ehci_shutdown_phy(dev, &priv->phy);
+       return generic_shutdown_phy(&priv->phy);
 }
 
 static const struct udevice_id ehci_pci_ids[] = {