usb: s3c-otg: Rename struct s3c_usbotg_reg to dwc2_usbotg_reg
authorMarek Vasut <marex@denx.de>
Fri, 4 Dec 2015 00:11:45 +0000 (01:11 +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_reg to struct dwc2_usbotg_reg
to make things more obvious and clear.

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

index eb7f77e..00d03f3 100644 (file)
@@ -144,7 +144,7 @@ static struct usb_ep_ops s3c_ep_ops = {
 /***********************************************************/
 
 void __iomem           *regs_otg;
-struct s3c_usbotg_reg *reg;
+struct dwc2_usbotg_reg *reg;
 
 bool dfu_usb_get_reset(void)
 {
@@ -805,7 +805,7 @@ int s3c_udc_probe(struct s3c_plat_otg_data *pdata)
 
        dev->pdata = pdata;
 
-       reg = (struct s3c_usbotg_reg *)pdata->regs_otg;
+       reg = (struct dwc2_usbotg_reg *)pdata->regs_otg;
 
        /* regs_otg = (void *)pdata->regs_otg; */
 
index ac5d112..c8da803 100644 (file)
@@ -48,7 +48,7 @@ struct ep_fifo {
 };
 
 /* USB2.0 OTG Controller register */
-struct s3c_usbotg_reg {
+struct dwc2_usbotg_reg {
        /* Core Global Registers */
        u32 gotgctl; /* OTG Control & Status */
        u32 gotgint; /* OTG Interrupt */