From patchwork Sat Aug 12 10:17:06 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Greg KH X-Patchwork-Id: 713772 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 75E87C001B0 for ; Sat, 12 Aug 2023 10:17:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235918AbjHLKRI (ORCPT ); Sat, 12 Aug 2023 06:17:08 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45532 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229829AbjHLKRH (ORCPT ); Sat, 12 Aug 2023 06:17:07 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3723E2133; Sat, 12 Aug 2023 03:17:10 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id C9B95627D0; Sat, 12 Aug 2023 10:17:09 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id D4F6AC433C8; Sat, 12 Aug 2023 10:17:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1691835429; bh=6KGjl4ZuzTY+sVa6wHpgVBZci7895Ma+lGQhtvuLk2A=; h=Date:From:To:Cc:Subject:From; b=gJFCxdQUXl9Fl2xmyO92CPc0evmsYbUhpsqdOGtqPFcJiCXbtOoFYR2jhETYKYmvN d3/OlsdAFDfdBWzFw+gLyHQNwQYmcPGC95fVhDdrzCoYQ275Nth+3f7fuocRSWAwFZ sPRzTItMbZs0j96v0dEzi1j5C4/MBVWXf/d7d7Lo= Date: Sat, 12 Aug 2023 12:17:06 +0200 From: Greg KH To: Linus Torvalds Cc: Andrew Morton , linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org Subject: [GIT PULL] USB / Thunderbolt driver fixes for 6.5-rc6 Message-ID: MIME-Version: 1.0 Content-Disposition: inline Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org The following changes since commit 5d0c230f1de8c7515b6567d9afba1f196fb4e2f4: Linux 6.5-rc4 (2023-07-30 13:23:47 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git tags/usb-6.5-rc6 for you to fetch changes up to f48585c468f51ac038c2cfaafcd4437bc3746bce: Merge tag 'thunderbolt-for-v6.5-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt into usb-linus (2023-08-08 10:04:47 +0200) ---------------------------------------------------------------- USB/Thunderbolt driver fixes for 6.5-rc6 Here are some small USB and Thunderbolt driver fixes for reported problems. Included in here are: - thunderbolt driver memory leak fix - thunderbolt display flicker fix - usb dwc3 driver fix - usb gadget uvc disconnect crash fix - usb typec Kconfig build dependency fix - usb typec small fixes - usb-con-gpio bugfix - usb-storage old driver bugfix All of these have been in linux-next for a while with no reported issues. Signed-off-by: Greg Kroah-Hartman ---------------------------------------------------------------- Alan Stern (2): USB: Gadget: core: Help prevent panic during UVC unconfigure usb-storage: alauda: Fix uninit-value in alauda_check_media() Badhri Jagan Sridharan (1): usb: typec: tcpm: Fix response to vsafe0V event Christophe JAILLET (1): usb: typec: nb7vpq904m: Add an error handling path in nb7vpq904m_probe() Elson Roy Serrao (1): usb: dwc3: Properly handle processing of pending events Greg Kroah-Hartman (1): Merge tag 'thunderbolt-for-v6.5-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt into usb-linus Heikki Krogerus (1): usb: typec: mux: intel: Add dependency on USB_COMMON Mika Westerberg (1): thunderbolt: Fix memory leak in tb_handle_dp_bandwidth_request() Prashanth K (1): usb: common: usb-conn-gpio: Prevent bailing out if initial role is none RD Babiera (1): usb: typec: altmodes/displayport: Signal hpd when configuring pin assignment Sanjay R Mehta (1): thunderbolt: Fix Thunderbolt 3 display flickering issue on 2nd hot plug onwards drivers/thunderbolt/tb.c | 2 ++ drivers/thunderbolt/tmu.c | 4 +++- drivers/usb/common/usb-conn-gpio.c | 6 +++++- drivers/usb/dwc3/gadget.c | 9 ++++++++- drivers/usb/gadget/udc/core.c | 9 +++++++++ drivers/usb/storage/alauda.c | 12 +++++++++--- drivers/usb/typec/altmodes/displayport.c | 18 +++++++++++++++++- drivers/usb/typec/mux/Kconfig | 1 + drivers/usb/typec/mux/nb7vpq904m.c | 25 ++++++++++++++++++------- drivers/usb/typec/tcpm/tcpm.c | 7 +++++++ 10 files changed, 79 insertions(+), 14 deletions(-)