public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: "gregkh@linuxfoundation.org" <gregkh@linuxfoundation.org>
To: Paul Zimmerman <Paul.Zimmerman@synopsys.com>
Cc: Robert Baldyga <r.baldyga@samsung.com>,
	"balbi@ti.com" <balbi@ti.com>,
	"linux-usb@vger.kernel.org" <linux-usb@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"m.szyprowski@samsung.com" <m.szyprowski@samsung.com>,
	"andrzej.p@samsung.com" <andrzej.p@samsung.com>
Subject: Re: [PATCH v3 00/12] usb: dwc2/gadget: fix series
Date: Mon, 4 Aug 2014 12:58:23 -0700	[thread overview]
Message-ID: <20140804195823.GA29162@kroah.com> (raw)
In-Reply-To: <A2CA0424C0A6F04399FB9E1CD98E0304844C40CF@US01WEMBX2.internal.synopsys.com>

On Mon, Aug 04, 2014 at 07:53:35PM +0000, Paul Zimmerman wrote:
> > From: gregkh@linuxfoundation.org [mailto:gregkh@linuxfoundation.org]
> > Sent: Monday, August 04, 2014 12:11 PM
> > 
> > On Mon, Aug 04, 2014 at 06:58:23PM +0000, Paul Zimmerman wrote:
> > > > From: Paul Zimmerman
> > > > Sent: Friday, July 18, 2014 12:19 PM
> > > >
> > > > > From: Robert Baldyga [mailto:r.baldyga@samsung.com]
> > > > > Sent: Friday, July 18, 2014 4:39 AM
> > > > >
> > > > > This patchset contains fixes for dwc2 gadget driver. It touches PHY,
> > > > > FIFO configuration, initialization sequence and adds many other small fixes.
> > > > >
> > > > > Best regards
> > > > > Robert Baldyga
> > > > > Samsung R&D Institute Poland
> > > > >
> > > > > Changelog:
> > > > > v3:
> > > > >  - use endpoint index instead of FIFO index for EPFIFO
> > > > >  - extend patch description
> > > > >
> > > > > v2: https://lkml.org/lkml/2014/7/16/199
> > > > >  - add patch usb: dwc2/gadget: avoid disabling ep0
> > > > >  - fix FIFO flushing when it's assigned to endpoint dynamically
> > > > >  - write to proper FIFO in s3c_hsotg_write_fifo() function
> > > > >  - use real FIFO size in kill_all_requests
> > > > >  - fix comment in s3c_hsotg_init_fifo() function
> > > > >
> > > > > v1: https://lkml.org/lkml/2014/6/23/67
> > > > >
> > > > > Andrzej Pietrasiewicz (1):
> > > > >   usb: dwc2/gadget: Fix comment text
> > > > >
> > > > > Kamil Debski (3):
> > > > >   usb: dwc2/gadget: fix phy disable sequence
> > > > >   usb: dwc2/gadget: fix phy initialization sequence
> > > > >   usb: dwc2/gadget: move phy bus legth initialization
> > > > >
> > > > > Marek Szyprowski (5):
> > > > >   usb: dwc2/gadget: hide some not really needed debug messages
> > > > >   usb: dwc2/gadget: ensure that all fifos have correct memory buffers
> > > > >   usb: dwc2/gadget: break infinite loop in endpoint disable code
> > > > >   usb: dwc2/gadget: do not call disconnect method in pullup
> > > > >   usb: dwc2/gadget: delay enabling irq once hardware is configured properly
> > > > >
> > > > > Robert Baldyga (3):
> > > > >   usb: dwc2/gadget: assign TX FIFO dynamically
> > > > >   usb: dwc2/gadget: disable clock when it's not needed
> > > > >   usb: dwc2/gadget: avoid disabling ep0
> > > > >
> > > > >  drivers/usb/dwc2/core.h   |   3 +
> > > > >  drivers/usb/dwc2/gadget.c | 184 +++++++++++++++++++++++++++-------------------
> > > > >  2 files changed, 111 insertions(+), 76 deletions(-)
> > > >
> > > > For the entire series:
> > > >
> > > > Acked-by: Paul Zimmerman <paulz@synopsys.com>
> > >
> > > Hi Greg,
> > >
> > > I don't see this series from Robert in your tree yet. Is it still in
> > > your queue, or should Robert resend it?
> > 
> > I thought this was coming in from Felipe's tree, sorry.  It's too late
> > for 3.17-rc1, I just sent out those patches to Linus.
> > 
> > If someone wants me to take a patch series, please be explicit and say
> > something like "Greg please take these in your tree", otherwise it is
> > very easy to get lost in my inbox...
> 
> Ah, OK. I guess that's my fault.
> 
> Still, the mainline merge window is open for two weeks, right? Any reason
> why you can't still send this series to Linus? I'd hate to see Robert
> lose out due to my screwup.

Patches had to be in my tree for the week _before_ the merge window
opened, to get testing in linux-next.  It's been that way for years,
sorry.

greg k-h

      reply	other threads:[~2014-08-04 19:58 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-18 11:39 [PATCH v3 00/12] usb: dwc2/gadget: fix series Robert Baldyga
2014-07-18 11:39 ` [PATCH v3 01/12] usb: dwc2/gadget: fix phy disable sequence Robert Baldyga
2014-07-18 11:39 ` [PATCH v3 02/12] usb: dwc2/gadget: fix phy initialization sequence Robert Baldyga
2014-07-18 11:39 ` [PATCH v3 03/12] usb: dwc2/gadget: move phy bus legth initialization Robert Baldyga
2014-07-18 11:39 ` [PATCH v3 04/12] usb: dwc2/gadget: Fix comment text Robert Baldyga
2014-07-18 11:39 ` [PATCH v3 05/12] usb: dwc2/gadget: hide some not really needed debug messages Robert Baldyga
2014-07-18 11:39 ` [PATCH v3 06/12] usb: dwc2/gadget: ensure that all fifos have correct memory buffers Robert Baldyga
2014-07-18 11:39 ` [PATCH v3 07/12] usb: dwc2/gadget: break infinite loop in endpoint disable code Robert Baldyga
2014-07-18 11:39 ` [PATCH v3 08/12] usb: dwc2/gadget: do not call disconnect method in pullup Robert Baldyga
2014-07-18 11:39 ` [PATCH v3 09/12] usb: dwc2/gadget: delay enabling irq once hardware is configured properly Robert Baldyga
2014-07-18 11:39 ` [PATCH v3 10/12] usb: dwc2/gadget: assign TX FIFO dynamically Robert Baldyga
2014-07-18 11:39 ` [PATCH v3 11/12] usb: dwc2/gadget: disable clock when it's not needed Robert Baldyga
2014-07-18 11:39 ` [PATCH v3 12/12] usb: dwc2/gadget: avoid disabling ep0 Robert Baldyga
2014-07-18 19:19 ` [PATCH v3 00/12] usb: dwc2/gadget: fix series Paul Zimmerman
2014-08-04 18:58 ` Paul Zimmerman
2014-08-04 19:10   ` gregkh
2014-08-04 19:53     ` Paul Zimmerman
2014-08-04 19:58       ` gregkh [this message]

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=20140804195823.GA29162@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=Paul.Zimmerman@synopsys.com \
    --cc=andrzej.p@samsung.com \
    --cc=balbi@ti.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=m.szyprowski@samsung.com \
    --cc=r.baldyga@samsung.com \
    /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