From patchwork Sat Jan 7 15:40:15 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Greg KH X-Patchwork-Id: 13092205 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 6DE52C54EBC for ; Sat, 7 Jan 2023 15:40:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231611AbjAGPkX (ORCPT ); Sat, 7 Jan 2023 10:40:23 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43822 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229621AbjAGPkW (ORCPT ); Sat, 7 Jan 2023 10:40:22 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 698B743D88; Sat, 7 Jan 2023 07:40:21 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 0DC71B81C25; Sat, 7 Jan 2023 15:40:20 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5805DC433D2; Sat, 7 Jan 2023 15:40:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1673106018; bh=Lax4i1DBEu9IdmILnpLlQn/9dqPnK8vFctmNyrvcfJs=; h=Date:From:To:Cc:Subject:From; b=ovsEQv6kkDjActPtld+QWotM77yXqNXGKufTCgb0pdsib/Ehmtt+JfgcAtOwcNypd zDWvc+HYN3LIZX55AQX6x5Ye8foaYzCnG9d1yNi2+4unInjjfPUopdnXGtEYqm0Nbz bp4mLW+iSlRQAnyYRdmw+yfBPpvPt1/oC9ZLOM5w= Date: Sat, 7 Jan 2023 16:40:15 +0100 From: Greg KH To: Linus Torvalds Cc: Andrew Morton , linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org Subject: [GIT PULL] USB driver fixes for 6.2-rc3 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 1b929c02afd37871d5afb9d498426f83432e71c2: Linux 6.2-rc1 (2022-12-25 13:41:39 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git tags/usb-6.2-rc3 for you to fetch changes up to c4e3ef5685393c5051b52cf1e94b8891d49793ab: usb: dwc3: gadget: Ignore End Transfer delay on teardown (2023-01-06 16:32:10 +0100) ---------------------------------------------------------------- USB fixes for 6.2-rc3 Here are some small USB driver fixes for 6.2-rc3 that resolve some reported issues. They include: - of-reported ulpi problem, so the offending commit is reverted - dwc3 driver bugfixes for recent changes - fotg210 fixes Most of these have been in linux-next for a while, the last few were on the mailing list for a long time and passed all the 0-day bot testing so all should be fine with them as well. Signed-off-by: Greg Kroah-Hartman ---------------------------------------------------------------- Arnd Bergmann (2): usb: fotg210: fix OTG-only build usb: dwc3: xilinx: include linux/gpio/consumer.h Ferry Toth (1): Revert "usb: ulpi: defer ulpi_register on ulpi_read_id timeout" Thinh Nguyen (1): usb: dwc3: gadget: Ignore End Transfer delay on teardown Yang Yingliang (1): usb: fotg210-udc: fix error return code in fotg210_udc_probe() drivers/usb/common/ulpi.c | 2 +- drivers/usb/dwc3/dwc3-xilinx.c | 1 + drivers/usb/dwc3/gadget.c | 5 ++++- drivers/usb/fotg210/fotg210-core.c | 5 +---- drivers/usb/fotg210/fotg210-udc.c | 2 ++ 5 files changed, 9 insertions(+), 6 deletions(-)