From patchwork Fri Jan 18 06:38:59 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Felipe Balbi X-Patchwork-Id: 10769483 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 C032A13B4 for ; Fri, 18 Jan 2019 06:39:06 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 992732CB43 for ; Fri, 18 Jan 2019 06:39:06 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 8D37C2CBD1; Fri, 18 Jan 2019 06:39:06 +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 2E3492CB43 for ; Fri, 18 Jan 2019 06:39:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727154AbfARGjF (ORCPT ); Fri, 18 Jan 2019 01:39:05 -0500 Received: from mga14.intel.com ([192.55.52.115]:43612 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727061AbfARGjF (ORCPT ); Fri, 18 Jan 2019 01:39:05 -0500 X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Jan 2019 22:39:05 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,489,1539673200"; d="asc'?scan'208";a="136793192" Received: from pipin.fi.intel.com (HELO localhost) ([10.237.72.175]) by fmsmga004.fm.intel.com with ESMTP; 17 Jan 2019 22:39:04 -0800 From: Felipe Balbi To: Greg Kroah-Hartman Cc: linux-usb@vger.kernel.org Subject: [GIT PULL] USB fixes for v5.0-rc2 Date: Fri, 18 Jan 2019 08:38:59 +0200 Message-ID: <87o98elbb0.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 pull request for this -rc cycle. Not much this time around, things are surprisingly calm. Let me know if you want anything to be changed. cheers The following changes since commit 1c7fc5cbc33980acd13d668f1c8f0313d6ae9fd8: Linux 5.0-rc2 (2019-01-14 10:41:12 +1200) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git fixes-for-v5.0-rc2 for you to fetch changes up to 87b6d2c56825c3119a0e64cc208ae6d795810a2e: usb: dwc2: gadget: Fix Remote Wakeup interrupt bit clearing (2019-01-17 15:56:53 +0200) ---------------------------------------------------------------- usb: fixes for v5.0-rc2 Few minor bug fixes on dwc3: adding a missing synchronize_irq() to prevent a very rare spurious interrupt during suspend; clearing needs_extra_trb flag to prevent it from being left erroneously set and confusing the driver when the request is recycled; initializing link_to a sensible default during init. Apart from these, one minor fix on dwc2 and another on f_sourcesink.c ---------------------------------------------------------------- Bo He (1): usb: dwc3: gadget: synchronize_irq dwc irq in suspend Dan Carpenter (1): usb: gadget: Potential NULL dereference on allocation error Jack Pham (1): usb: dwc3: gadget: Clear req->needs_extra_trb flag on cleanup Minas Harutyunyan (1): usb: dwc2: gadget: Fix Remote Wakeup interrupt bit clearing Zeng Tao (1): usb: dwc3: gadget: Fix the uninitialized link_state when udc starts drivers/usb/dwc2/gadget.c | 2 +- drivers/usb/dwc3/gadget.c | 4 ++++ drivers/usb/gadget/function/f_sourcesink.c | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-)