From patchwork Fri Jun 7 06:33:29 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Felipe Balbi X-Patchwork-Id: 10980821 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 359B914C0 for ; Fri, 7 Jun 2019 06:33:38 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1976B28B0D for ; Fri, 7 Jun 2019 06:33:38 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 0C18E28B10; Fri, 7 Jun 2019 06:33:38 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E8E9C28B0D for ; Fri, 7 Jun 2019 06:33:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726761AbfFGGdg (ORCPT ); Fri, 7 Jun 2019 02:33:36 -0400 Received: from mga09.intel.com ([134.134.136.24]:57657 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726248AbfFGGdg (ORCPT ); Fri, 7 Jun 2019 02:33:36 -0400 X-Amp-Result: UNSCANNABLE X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Jun 2019 23:33:35 -0700 X-ExtLoop1: 1 Received: from pipin.fi.intel.com (HELO pipin) ([10.237.72.175]) by orsmga004.jf.intel.com with ESMTP; 06 Jun 2019 23:33:32 -0700 From: Felipe Balbi To: Greg Kroah-Hartman Cc: linux-usb@vger.kernel.org Subject: [GIT PULL] USB: fixes for v5.2-rc4 Date: Fri, 07 Jun 2019 09:33:29 +0300 Message-ID: <87o939dhvq.fsf@linux.intel.com> MIME-Version: 1.0 Sender: linux-usb-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Hi Greg, Here's my first set of fixes for this -rc cycle. Looks like most of what I have in my inbox these days are new features. Very little fixes. I guess folks are writing perfect code now :-p Let me know if you want anything to be changed. Cheers _________________________________ < That's some perfect C, partner. > --------------------------------- \ ^__^ \ (oo)\_______ (__)\ )\/\ ||----w | || || The following changes since commit f2c7c76c5d0a443053e94adb9f0918fa2fb85c3a: Linux 5.2-rc3 (2019-06-02 13:55:33 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git tags/fixes-for-v5.2-rc4 for you to fetch changes up to 42cc68868ce9d5f5277f561bb17b4746a332bb28: usb: gadget: udc: lpc32xx: fix return value check in lpc32xx_udc_probe() (2019-06-06 13:51:57 +0300) ---------------------------------------------------------------- USB: fixes for v5.2-rc4 DWC2 gets a fix for zlp handling which allows DWC2 to pass USBCV MSC tests. A memory leak in fusb300 was plugged. DWC2 also got a fix for wMaxPacketSize handling while acting as host which fixes a regression with USB Cameras. Apart from these, the usual set of minor fixes. Signed-off-by: Felipe Balbi ---------------------------------------------------------------- Alexandre Belloni (1): usb: gadget: udc: lpc32xx: allocate descriptor with GFP_ATOMIC Andrey Smirnov (1): usb: phy: mxs: Disable external charger detect in mxs_phy_hw_init() Andrzej Pietrasiewicz (1): usb: gadget: dwc2: fix zlp handling Douglas Anderson (1): usb: dwc2: host: Fix wMaxPacketSize handling (fix webcam regression) Martin Schiller (1): usb: dwc2: Fix DMA cache alignment issues Minas Harutyunyan (1): usb: dwc2: Set actual frame number for completed ISOC transfer for none DDMA Wei Yongjun (1): usb: gadget: udc: lpc32xx: fix return value check in lpc32xx_udc_probe() Young Xiao (1): usb: gadget: fusb300_udc: Fix memory leak of fusb300->ep[i] drivers/usb/dwc2/gadget.c | 24 ++++++++++++++-------- drivers/usb/dwc2/hcd.c | 39 ++++++++++++++++++++++-------------- drivers/usb/dwc2/hcd.h | 20 +++++++++--------- drivers/usb/dwc2/hcd_intr.c | 5 +++-- drivers/usb/dwc2/hcd_queue.c | 10 +++++---- drivers/usb/gadget/udc/fusb300_udc.c | 5 +++++ drivers/usb/gadget/udc/lpc32xx_udc.c | 7 +++---- drivers/usb/phy/phy-mxs-usb.c | 14 +++++++++++++ 8 files changed, 82 insertions(+), 42 deletions(-)