public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/24] usb: s3c-otg: Rename driver to dwc2-otg
@ 2015-12-04  2:37 Marek Vasut
  2015-12-04  2:37 ` [U-Boot] [PATCH 01/24] usb: s3c-otg: Rename regs-otg.h to s3c_udc_otg_regs.h Marek Vasut
                   ` (25 more replies)
  0 siblings, 26 replies; 40+ messages in thread
From: Marek Vasut @ 2015-12-04  2:37 UTC (permalink / raw)
  To: u-boot

The driver is for the dwc2 otg block , so rename it accordingly finally.

Marek Vasut (24):
  usb: s3c-otg: Rename regs-otg.h to s3c_udc_otg_regs.h
  usb: s3c-otg: Rename struct s3c_udc to dwc2_udc
  usb: s3c-otg: Rename struct s3c_usbotg_reg to dwc2_usbotg_reg
  usb: s3c-otg: Split private bits from s3c_udc.h
  usb: s3c-otg: Rename struct s3c_usbotg_phy to dwc2_usbotg_phy
  usb: s3c-otg: Rename struct s3c_dev_*_ep
  usb: s3c-otg: Rename struct s3c_ep
  usb: s3c-otg: Rename struct s3c_request
  usb: s3c-otg: Staticize s3c_udc_ep_set_stall
  usb: s3c-otg: Staticize functions in s3c_udc_otg_xfer_dma.c
  usb: s3c-otg: Rename s3c_ep0_*() functions
  usb: s3c-otg: Rename s3c_ep_*() functions
  usb: s3c-otg: Rename s3c_udc_*() functions
  usb: s3c-otg: Rename remaining local s3c_*() functions
  usb: s3c-otg: Zap useless externs
  usb: s3c-otg: Change the driver name to dwc2-udc
  usb: s3c-otg: Rename local headers to dwc2_*h
  usb: s3c-otg: Rename sources to dwc2_*c
  usb: s3c-otg: Rename remaining macros
  usb: s3c-otg: Tweak the comments
  usb: s3c-otg: Rename USB_GADGET_S3C_UDC_OTG* to USB_GADGET_DWC2_OTG*
  usb: s3c-otg: Rename struct s3c_plat_otg_data
  usb: s3c-otg: Rename s3c_udc_probe() function
  usb: s3c-otg: Rename usb/s3c_udc.h to usb/dwc2_udc.h

 board/altera/arria5-socdk/socfpga.c                |   6 +-
 board/altera/cyclone5-socdk/socfpga.c              |   6 +-
 board/broadcom/bcm28155_ap/bcm28155_ap.c           |   8 +-
 board/denx/mcvevk/socfpga.c                        |   6 +-
 board/ebv/socrates/socfpga.c                       |   6 +-
 board/samsung/goni/goni.c                          |   6 +-
 board/samsung/odroid/odroid.c                      |   6 +-
 board/samsung/trats/trats.c                        |   8 +-
 board/samsung/trats2/trats2.c                      |   6 +-
 board/samsung/universal_c210/universal.c           |   6 +-
 board/terasic/sockit/socfpga.c                     |   6 +-
 drivers/usb/gadget/Makefile                        |   4 +-
 drivers/usb/gadget/bcm_udc_otg_phy.c               |   6 +-
 .../usb/gadget/{s3c_udc_otg.c => dwc2_udc_otg.c}   | 205 +++++++++++----------
 .../{s3c_udc_otg_phy.c => dwc2_udc_otg_phy.c}      |  21 ++-
 .../usb/gadget/dwc2_udc_otg_priv.h                 |  43 ++---
 .../usb/gadget/{regs-otg.h => dwc2_udc_otg_regs.h} |  32 ++--
 ..._udc_otg_xfer_dma.c => dwc2_udc_otg_xfer_dma.c} | 202 ++++++++++----------
 include/configs/bcm28155_ap.h                      |   2 +-
 include/configs/exynos4-common.h                   |   4 +-
 include/configs/s5p_goni.h                         |   4 +-
 include/configs/s5pc210_universal.h                |   4 +-
 include/configs/smdkv310.h                         |   4 +-
 include/configs/socfpga_common.h                   |   2 +-
 include/usb/dwc2_udc.h                             |  23 +++
 25 files changed, 319 insertions(+), 307 deletions(-)
 rename drivers/usb/gadget/{s3c_udc_otg.c => dwc2_udc_otg.c} (77%)
 rename drivers/usb/gadget/{s3c_udc_otg_phy.c => dwc2_udc_otg_phy.c} (83%)
 rename include/usb/s3c_udc.h => drivers/usb/gadget/dwc2_udc_otg_priv.h (69%)
 rename drivers/usb/gadget/{regs-otg.h => dwc2_udc_otg_regs.h} (92%)
 rename drivers/usb/gadget/{s3c_udc_otg_xfer_dma.c => dwc2_udc_otg_xfer_dma.c} (88%)
 create mode 100644 include/usb/dwc2_udc.h

-- 
2.1.4

^ permalink raw reply	[flat|nested] 40+ messages in thread

end of thread, other threads:[~2015-12-15 22:50 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-04  2:37 [U-Boot] [PATCH 00/24] usb: s3c-otg: Rename driver to dwc2-otg Marek Vasut
2015-12-04  2:37 ` [U-Boot] [PATCH 01/24] usb: s3c-otg: Rename regs-otg.h to s3c_udc_otg_regs.h Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 02/24] usb: s3c-otg: Rename struct s3c_udc to dwc2_udc Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 03/24] usb: s3c-otg: Rename struct s3c_usbotg_reg to dwc2_usbotg_reg Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 04/24] usb: s3c-otg: Split private bits from s3c_udc.h Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 05/24] usb: s3c-otg: Rename struct s3c_usbotg_phy to dwc2_usbotg_phy Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 06/24] usb: s3c-otg: Rename struct s3c_dev_*_ep Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 07/24] usb: s3c-otg: Rename struct s3c_ep Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 08/24] usb: s3c-otg: Rename struct s3c_request Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 09/24] usb: s3c-otg: Staticize s3c_udc_ep_set_stall Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 10/24] usb: s3c-otg: Staticize functions in s3c_udc_otg_xfer_dma.c Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 11/24] usb: s3c-otg: Rename s3c_ep0_*() functions Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 12/24] usb: s3c-otg: Rename s3c_ep_*() functions Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 13/24] usb: s3c-otg: Rename s3c_udc_*() functions Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 14/24] usb: s3c-otg: Rename remaining local s3c_*() functions Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 15/24] usb: s3c-otg: Zap useless externs Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 16/24] usb: s3c-otg: Change the driver name to dwc2-udc Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 17/24] usb: s3c-otg: Rename local headers to dwc2_*h Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 18/24] usb: s3c-otg: Rename sources to dwc2_*c Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 19/24] usb: s3c-otg: Rename remaining macros Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 20/24] usb: s3c-otg: Tweak the comments Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 21/24] usb: s3c-otg: Rename USB_GADGET_S3C_UDC_OTG* to USB_GADGET_DWC2_OTG* Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 22/24] usb: s3c-otg: Rename struct s3c_plat_otg_data Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 23/24] usb: s3c-otg: Rename s3c_udc_probe() function Marek Vasut
2015-12-04  2:38 ` [U-Boot] [PATCH 24/24] usb: s3c-otg: Rename usb/s3c_udc.h to usb/dwc2_udc.h Marek Vasut
2015-12-04  9:09 ` [U-Boot] [PATCH 00/24] usb: s3c-otg: Rename driver to dwc2-otg Lukasz Majewski
2015-12-04 13:38   ` Marek Vasut
2015-12-04 15:12     ` Lukasz Majewski
2015-12-04 15:22       ` Marek Vasut
2015-12-09  9:37 ` Lukasz Majewski
2015-12-09 14:15   ` Marek Vasut
2015-12-09 15:02     ` Lukasz Majewski
2015-12-09 15:17       ` Marek Vasut
2015-12-09 16:06         ` Lukasz Majewski
2015-12-09 16:22           ` Marek Vasut
2015-12-10 16:07             ` Lukasz Majewski
2015-12-10 16:51               ` Marek Vasut
2015-12-10 17:08                 ` Marek Vasut
2015-12-15 14:40                   ` Lukasz Majewski
2015-12-15 22:50                     ` Marek Vasut

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox