public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Marek Vasut <marex@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 00/24] usb: s3c-otg: Rename driver to dwc2-otg
Date: Wed, 9 Dec 2015 16:17:47 +0100	[thread overview]
Message-ID: <201512091617.47515.marex@denx.de> (raw)
In-Reply-To: <20151209160258.719a5078@amdc2363>

On Wednesday, December 09, 2015 at 04:02:58 PM, Lukasz Majewski wrote:
> Hi Marek,
> 
> > On Wednesday, December 09, 2015 at 10:37:42 AM, Lukasz Majewski wrote:
> > > Hi Marek,
> > > 
> > > > 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
> > > 
> > > What is the base sha1 and branch for those patches?
> > > 
> > > I cannot apply them on u-boot-usb/master (SHA1:
> > > 59a38d86de2439c72d72be54958a04bb1b778410)
> > 
> > I should've updated u-boot-usb, sorry about that. I can pick them
> > through u-boot-usb/master if you don't mind to make things easier for
> > you. I put the patches into u-boot-usb/s3c-udc for now.
> 
> Ok, thanks.
> 
> I will examine that.

OK, shall I wait with application then ?

  reply	other threads:[~2015-12-09 15:17 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201512091617.47515.marex@denx.de \
    --to=marex@denx.de \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox