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 7.2-rc5
Date: Sun, 26 Jul 2026 15:01:08 +0200	[thread overview]
Message-ID: <amYFFFruzS4L7mQH@kroah.com> (raw)

The following changes since commit a13c140cc289c0b7b3770bce5b3ad42ab35074aa:

  Linux 7.2-rc3 (2026-07-12 14:16:39 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git tags/usb-7.2-rc5

for you to fetch changes up to b6061b6cca72d6a20f5eccd72b8da78c2e460861:

  Merge tag 'usb-serial-7.2-rc4' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial into usb-linus (2026-07-24 15:36:52 +0200)

----------------------------------------------------------------
USB fixes for 7.2-rc5

Here are some small USB fixes and new device quirks and ids for 7.2-rc5.
Included in here are:
  - usb storage quirk added
  - new usb serial device ids added
  - usb-serial device name leak and other bug fixes
  - small xhci driver fixes
  - normal batch of typec driver fixes for reported issues
  - usb-atm much-reported-by-syzbot fix for firmware download races
  - sysfs BOS device removal race fix
  - lots of usb gadget driver fixes for reported issues
  - other small USB driver fixes for other reported problems.

All of these have been in linux-next this past week, many of them much
longer.

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

----------------------------------------------------------------
Andrei Kuchynski (2):
      usb: typec: ucsi: Fix race condition and ordering in port unregistration
      usb: typec: ucsi: Correct teardown ordering in ucsi_init() error path

Arnd Bergmann (1):
      usb: udc: pxa: fix error handling

Cen Zhang (1):
      usb: gadget: f_tcm: synchronize delayed set_alt with teardown

Chia-Lin Kao (AceLan) (4):
      usb: core: port: Deattach Type-C connector on component unbind
      usb: typec: ucsi: Detect and skip duplicate altmodes from buggy firmware
      usb: typec: ucsi: Add duplicate detection to nvidia registration path
      usb: typec: ucsi: yoga_c630: Remove redundant duplicate altmode handling

Chukun Pan (1):
      USB: serial: option: add TDTECH MT5710-CN

Diego Fernando Mancera Gomez (1):
      usb: atm: ueagle-atm: reject descriptors that confuse probe and disconnect

Fan Wu (2):
      usb: gadget: udc: bdc: free IRQ and drain func_wake_notify before teardown
      usb: gadget: f_midi: cancel pending IN work before freeing the midi object

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

Griffin Kroah-Hartman (1):
      usb: core: sysfs: add lock to bos_descriptors_read()

Guangshuo Li (1):
      usb: musb: omap2430: Do not put borrowed of_node in probe

Huang Wei (1):
      USB: storage: add NO_ATA_1X quirk for Longmai USB Key

Jinchao Wang (1):
      usb: gadget: dummy_hcd: prevent fifo_req reuse during giveback

Johan Hovold (5):
      USB: gadget: fsl-udc: fix device name leak on probe failure
      USB: gadget: snps-udc: fix device name leak on probe failure
      USB: gadget: fsl-udc: fix dev_printk() device
      USB: gadget: fsl-udc: drop misleading unbind sanity check
      USB: serial: keyspan_pda: fix data loss on receive throttling

Melbin K Mathew (1):
      usb: gadget: printer: fix infinite loop in printer_read()

Muhammad Bilal (1):
      usb: gadget: uvc: clamp SEND_RESPONSE length to the response buffer

Pengpeng Hou (2):
      USB: serial: mxuport: validate firmware header size
      USB: serial: io_ti: reject oversized boot-mode firmware

Sonali Pradhan (1):
      usb: gadget: f_ncm: validate datagram bounds in ncm_unwrap_ntb()

Sunho Park (1):
      USB: serial: io_edgeport: cap received transmit credits

Tim Pambor (1):
      USB: serial: ftdi_sio: add support for E+H FXA291

Xincheng Zhang (1):
      usb: xhci-pci: Limit VIA VL805 DMA addressing to 36 bits

Xu Yang (1):
      usb: chipidea: fix usage_count leak when autosuspend_delay is negative

 drivers/usb/atm/ueagle-atm.c            |  17 +++
 drivers/usb/chipidea/core.c             |   1 +
 drivers/usb/core/port.c                 |   2 +
 drivers/usb/core/sysfs.c                |   8 +-
 drivers/usb/gadget/function/f_midi.c    |   1 +
 drivers/usb/gadget/function/f_ncm.c     |  17 ++-
 drivers/usb/gadget/function/f_printer.c |  23 ++-
 drivers/usb/gadget/function/f_tcm.c     | 192 +++++++++++++++++++++----
 drivers/usb/gadget/function/tcm.h       |  13 ++
 drivers/usb/gadget/function/uvc_v4l2.c  |   2 +
 drivers/usb/gadget/udc/bdc/bdc_core.c   |  20 +++
 drivers/usb/gadget/udc/bdc/bdc_udc.c    |   7 +-
 drivers/usb/gadget/udc/dummy_hcd.c      |  40 ++++--
 drivers/usb/gadget/udc/fsl_udc_core.c   |  99 ++++++-------
 drivers/usb/gadget/udc/fsl_usb2_udc.h   |   1 +
 drivers/usb/gadget/udc/pxa27x_udc.c     |  10 +-
 drivers/usb/gadget/udc/snps_udc_core.c  |   1 -
 drivers/usb/host/xhci-pci.c             |   1 +
 drivers/usb/host/xhci.c                 |  15 +-
 drivers/usb/host/xhci.h                 |   1 +
 drivers/usb/musb/omap2430.c             |   2 -
 drivers/usb/serial/ftdi_sio.c           |   2 +
 drivers/usb/serial/ftdi_sio_ids.h       |   5 +
 drivers/usb/serial/io_edgeport.c        |   3 +-
 drivers/usb/serial/io_ti.c              |   6 +
 drivers/usb/serial/keyspan_pda.c        |  44 ++++--
 drivers/usb/serial/mxuport.c            |   7 +
 drivers/usb/serial/option.c             |   1 +
 drivers/usb/storage/unusual_devs.h      |   7 +
 drivers/usb/typec/ucsi/ucsi.c           | 240 +++++++++++++++++++++++++-------
 drivers/usb/typec/ucsi/ucsi_yoga_c630.c |  23 ---
 31 files changed, 599 insertions(+), 212 deletions(-)

             reply	other threads:[~2026-07-26 13:01 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-26 13:01 Greg KH [this message]
2026-07-26 20:00 ` [GIT PULL] USB driver fixes for 7.2-rc5 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=amYFFFruzS4L7mQH@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.