All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <gregkh@linuxfoundation.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org
Subject: [GIT PULL] USB driver fixes for 6.19-rc6
Date: Sun, 18 Jan 2026 16:11:15 +0100	[thread overview]
Message-ID: <aWz4Eyh6898JjAzB@kroah.com> (raw)

The following changes since commit f8f9c1f4d0c7a64600e2ca312dec824a0bc2f1da:

  Linux 6.19-rc3 (2025-12-28 13:24:26 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git tags/usb-6.19-rc6

for you to fetch changes up to dd83dc1249737b837ac5d57c81f2b0977c613d9f:

  xhci: sideband: don't dereference freed ring when removing sideband endpoint (2026-01-16 12:19:37 +0100)

----------------------------------------------------------------
USB fixes for 6.19-rc6

Here are some small USB fixes and new device ids for 6.19-rc6

Included in here are:
  - new usb-serial device ids
  - dwc3-apple driver fixes to get things working properly on that
    hardware platform
  - ohci/uhci platfrom driver module soft-deps with ehci to remove a
    runtime warning that sometimes shows up on some platforms.
  - quirk for broken devices that can not handle reading the BOS
    descriptor from them without going crazy.
  - usb-serial driver fixes
  - xhci driver fixes
  - usb gadget driver fixes

All of these except for the last xhci fix has been in linux-next for a
while.  The xhci fix has been reported by others to solve the issue for
them, so should be ok.

Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

----------------------------------------------------------------
Arnaud Ferraris (1):
      tcpm: allow looking for role_sw device in the main node

Ethan Nelson-Moore (1):
      USB: serial: ftdi_sio: add support for PICAXE AXE027 cable

Greg Kroah-Hartman (1):
      Merge tag 'usb-serial-6.19-rc6' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial into usb-linus

Huacai Chen (1):
      USB: OHCI/UHCI: Add soft dependencies on ehci_platform

Janne Grunau (1):
      usb: dwc3: apple: Ignore USB role switches to the active role

Ji-Ze Hong (Peter Hong) (1):
      USB: serial: f81232: fix incomplete serial port generation

Johannes Brüderl (1):
      usb: core: add USB_QUIRK_NO_BOS for devices that hang on BOS descriptor

Krzysztof Kozlowski (2):
      dt-bindings: usb: qcom,dwc3: Correct IPQ5018 interrupts
      dt-bindings: usb: qcom,dwc3: Correct MSM8994 interrupts

Mathias Nyman (1):
      xhci: sideband: don't dereference freed ring when removing sideband endpoint

Sven Peter (1):
      usb: dwc3: apple: Set USB2 PHY mode before dwc3 init

Thinh Nguyen (1):
      usb: dwc3: Check for USB4 IP_NAME

Ulrich Mohr (1):
      USB: serial: option: add Telit LE910 MBIM composition

Wayne Chang (1):
      usb: host: xhci-tegra: Use platform_get_irq_optional() for wake IRQs

Xu Yang (4):
      usb: gadget: uvc: fix req_payload_size calculation
      usb: gadget: uvc: fix interval_duration calculation
      usb: gadget: uvc: return error from uvcg_queue_init()
      usb: gadget: uvc: retry vb2_reqbufs() with vb_vmalloc_memops if use_sg fail

 .../devicetree/bindings/usb/qcom,dwc3.yaml         |  4 +-
 .../devicetree/bindings/usb/qcom,snps-dwc3.yaml    |  4 +-
 drivers/usb/core/config.c                          |  5 ++
 drivers/usb/core/quirks.c                          |  3 +
 drivers/usb/dwc3/core.c                            |  2 +
 drivers/usb/dwc3/core.h                            |  1 +
 drivers/usb/dwc3/dwc3-apple.c                      | 64 +++++++++++++-----
 drivers/usb/gadget/function/f_uvc.c                |  4 ++
 drivers/usb/gadget/function/uvc.h                  |  3 +-
 drivers/usb/gadget/function/uvc_queue.c            | 23 +++++--
 drivers/usb/gadget/function/uvc_video.c            | 14 ++--
 drivers/usb/host/ohci-platform.c                   |  1 +
 drivers/usb/host/uhci-platform.c                   |  1 +
 drivers/usb/host/xhci-sideband.c                   |  1 -
 drivers/usb/host/xhci-tegra.c                      |  2 +-
 drivers/usb/host/xhci.c                            | 15 ++++-
 drivers/usb/serial/f81232.c                        | 77 +++++++++++++---------
 drivers/usb/serial/ftdi_sio.c                      |  1 +
 drivers/usb/serial/ftdi_sio_ids.h                  |  2 +
 drivers/usb/serial/option.c                        |  1 +
 drivers/usb/typec/tcpm/tcpm.c                      |  2 +-
 include/linux/usb/quirks.h                         |  3 +
 22 files changed, 166 insertions(+), 67 deletions(-)

             reply	other threads:[~2026-01-18 15:11 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-18 15:11 Greg KH [this message]
2026-01-19 13:53 ` [GIT PULL] USB driver fixes for 6.19-rc6 pr-tracker-bot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=aWz4Eyh6898JjAzB@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=akpm@linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.