usb: s3c-otg: Rename struct s3c_usbotg_phy to dwc2_usbotg_phy
authorMarek Vasut <marex@denx.de>
Fri, 4 Dec 2015 00:44:41 +0000 (01:44 +0100)
committerMarek Vasut <marex@denx.de>
Thu, 17 Dec 2015 20:54:38 +0000 (21:54 +0100)
The driver is actually for the Designware DWC2 controller.
This patch renames struct s3c_usbotg_phy to struct dwc2_usbotg_phy
to make things more obvious and clear.

Signed-off-by: Marek Vasut <marex@denx.de>
drivers/usb/gadget/s3c_udc_otg_phy.c
drivers/usb/gadget/s3c_udc_otg_regs.h

index 169f8e4dbbfb600782fcb8a974fd2ae938edf295..a761b43b12dcd241b59aa80f4e77ad3d6c784c8e 100644 (file)
@@ -41,8 +41,8 @@
 void otg_phy_init(struct dwc2_udc *dev)
 {
        unsigned int usb_phy_ctrl = dev->pdata->usb_phy_ctrl;
-       struct s3c_usbotg_phy *phy =
-               (struct s3c_usbotg_phy *)dev->pdata->regs_phy;
+       struct dwc2_usbotg_phy *phy =
+               (struct dwc2_usbotg_phy *)dev->pdata->regs_phy;
 
        dev->pdata->phy_control(1);
 
@@ -79,8 +79,8 @@ void otg_phy_init(struct dwc2_udc *dev)
 void otg_phy_off(struct dwc2_udc *dev)
 {
        unsigned int usb_phy_ctrl = dev->pdata->usb_phy_ctrl;
-       struct s3c_usbotg_phy *phy =
-               (struct s3c_usbotg_phy *)dev->pdata->regs_phy;
+       struct dwc2_usbotg_phy *phy =
+               (struct dwc2_usbotg_phy *)dev->pdata->regs_phy;
 
        /* reset controller just in case */
        writel(PHY_SW_RST0, &phy->rstcon);
index c8da803d856e5990b6ef7edbbfd2730465c9b7f1..e5115ddef15a87388938fcd2b4e24ef4911346c6 100644 (file)
@@ -12,7 +12,7 @@
 #define __ASM_ARCH_REGS_USB_OTG_HS_H
 
 /* USB2.0 OTG Controller register */
-struct s3c_usbotg_phy {
+struct dwc2_usbotg_phy {
        u32 phypwr;
        u32 phyclk;
        u32 rstcon;