mbox series

[GIT,PULL] USB fixes for v5.0-rc4

Message ID 87k1ilfhyh.fsf@linux.intel.com (mailing list archive)
State New, archived
Headers show
Series [GIT,PULL] USB fixes for v5.0-rc4 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git fixes-for-v5.0-rc4

Message

Felipe Balbi Jan. 31, 2019, 6:40 a.m. UTC
Hi Greg,

here's another pull request for this rc cycle. Only 5 commits this time
around. <joke> I'm guessing USB is almost code-complete </joke>

Let me know if you want anything to be changed.

cheers
 _______________ 
< Code Complete >
 --------------- 
        \   ^__^
         \  (oo)\_______
            (__)\       )\/\
                ||----w |
                ||     ||

The following changes since commit f17b5f06cb92ef2250513a1e154c47b78df07d40:

  Linux 5.0-rc4 (2019-01-27 15:18:05 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git fixes-for-v5.0-rc4

for you to fetch changes up to a53469a68eb886e84dd8b69a1458a623d3591793:

  usb: phy: am335x: fix race condition in _probe (2019-01-28 15:31:43 +0200)

----------------------------------------------------------------
usb: fixes for v5.0-rc4

Dwc3 got a fix for cases when gadget driver queue an OUT request of
length 0; this is a case that has been overlooked for quite some time
now.

Exynos' dwc3 glue layer got a fix on the error path for those cases
where clk_prepare_enable() fails.

TI's AM335x PHY driver got a fix for a race condition during
probe. This race happened because driver was powering off the PHY only
after adding the PHY handle to the framework. The result is that we
could fall into a situation where user of the PHY (MUSB) could call
phy_init() before phy driver's probe() called phy_poweroff() which
would result in a powered off PHY after phy_init() was called.

The old net2272 driver got a fix for an erroneous use of bitwise
negation.

----------------------------------------------------------------
Alexey Khoroshilov (1):
      usb: dwc3: exynos: Fix error handling of clk_prepare_enable

Anders Roxell (1):
      usb: phy: fix link errors

Bin Liu (1):
      usb: phy: am335x: fix race condition in _probe

Gustavo A. R. Silva (1):
      usb: gadget: udc: net2272: Fix bitwise and boolean operations

Tejas Joglekar (1):
      usb: dwc3: gadget: Handle 0 xfer length for OUT EP

 drivers/usb/dwc3/dwc3-exynos.c   | 4 ++--
 drivers/usb/dwc3/gadget.c        | 2 +-
 drivers/usb/gadget/udc/net2272.c | 2 +-
 drivers/usb/phy/Kconfig          | 2 +-
 drivers/usb/phy/phy-am335x.c     | 5 +----
 5 files changed, 6 insertions(+), 9 deletions(-)

Comments

Greg KH Jan. 31, 2019, 8:02 a.m. UTC | #1
On Thu, Jan 31, 2019 at 08:40:22AM +0200, Felipe Balbi wrote:
> 
> Hi Greg,
> 
> here's another pull request for this rc cycle. Only 5 commits this time
> around. <joke> I'm guessing USB is almost code-complete </joke>
> 
> Let me know if you want anything to be changed.
> 
> cheers
>  _______________ 
> < Code Complete >
>  --------------- 
>         \   ^__^
>          \  (oo)\_______
>             (__)\       )\/\
>                 ||----w |
>                 ||     ||

Yeah!  Now if only people will stop making new USB devices and
controllers, we can all just go home and relax :)

Now pulled and pushed out, thanks,

greg k-h
Felipe Balbi Jan. 31, 2019, 8:50 a.m. UTC | #2
Hi,

Greg Kroah-Hartman <gregkh@linuxfoundation.org> writes:
>> here's another pull request for this rc cycle. Only 5 commits this time
>> around. <joke> I'm guessing USB is almost code-complete </joke>
>> 
>> Let me know if you want anything to be changed.
>> 
>> cheers
>>  _______________ 
>> < Code Complete >
>>  --------------- 
>>         \   ^__^
>>          \  (oo)\_______
>>             (__)\       )\/\
>>                 ||----w |
>>                 ||     ||
>
> Yeah!  Now if only people will stop making new USB devices and
> controllers, we can all just go home and relax :)

I'd be happy with new spec-compliant devices ;)

> Now pulled and pushed out, thanks,

Thank you