mbox series

[GIT,PULL] USB fixes for 6.13-rc3

Message ID Z12X4vb79DECg-w2@kroah.com
State New
Headers show
Series [GIT,PULL] USB fixes for 6.13-rc3 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git tags/usb-6.13-rc3

Message

Greg KH Dec. 14, 2024, 2:36 p.m. UTC
The following changes since commit cdd30ebb1b9f36159d66f088b61aee264e649d7a:

  module: Convert symbol namespace to string literal (2024-12-02 11:34:44 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git tags/usb-6.13-rc3

for you to fetch changes up to 33ead7e538183b1348ba60af90027240a10de751:

  usb: typec: ucsi: Fix connector status writing past buffer size (2024-12-04 16:30:28 +0100)

----------------------------------------------------------------
USB driver fixes for 6.13-rc3

Here are some small USB driver fixes for some reported issues.  Included
in here are:
  - typec driver bugfixes
  - u_serial gadget driver bugfix for much reported and discussed issue
  - dwc2 bugfixes
  - midi gadget driver bugfix
  - ehci-hcd driver bugfix
  - other small bugfixes

All of these have been in linux-next for over a week with no reported
issues.

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

----------------------------------------------------------------
Joe Hattori (2):
      usb: typec: anx7411: fix fwnode_handle reference leak
      usb: typec: anx7411: fix OF node reference leaks in anx7411_typec_switch_probe()

Lianqin Hu (1):
      usb: gadget: u_serial: Fix the issue that gs_start_io crashed due to accessing null pointer

Lucas De Marchi (1):
      usb: typec: ucsi: Fix connector status writing past buffer size

Mark Tomlinson (1):
      usb: host: max3421-hcd: Correctly abort a USB request.

Neal Frager (1):
      usb: dwc3: xilinx: make sure pipe clock is deselected in usb2 only mode

Radhey Shyam Pandey (1):
      usb: misc: onboard_usb_dev: skip suspend/resume sequence for USB5744 SMBus support

Stefan Wahren (3):
      usb: dwc2: Fix HCD resume
      usb: dwc2: hcd: Fix GetPortStatus & SetPortFeature
      usb: dwc2: Fix HCD port connection race

Takashi Iwai (1):
      usb: gadget: midi2: Fix interpretation of is_midi1 bits

Vitalii Mordan (1):
      usb: ehci-hcd: fix call balance of clocks handling routines

Xu Yang (3):
      dt-bindings: phy: imx8mq-usb: correct reference to usb-switch.yaml
      usb: dwc3: imx8mp: fix software node kernel dump
      usb: core: hcd: only check primary hcd skip_phy_initialization

Ɓukasz Bartosik (1):
      usb: typec: ucsi: Fix completion notifications

 .../bindings/phy/fsl,imx8mq-usb-phy.yaml           |  7 +--
 drivers/usb/core/hcd.c                             |  8 ++-
 drivers/usb/dwc2/hcd.c                             | 19 +++----
 drivers/usb/dwc3/dwc3-imx8mp.c                     | 30 +++++-----
 drivers/usb/dwc3/dwc3-xilinx.c                     |  5 +-
 drivers/usb/gadget/function/f_midi2.c              |  6 +-
 drivers/usb/gadget/function/u_serial.c             |  9 ++-
 drivers/usb/host/ehci-sh.c                         |  9 ++-
 drivers/usb/host/max3421-hcd.c                     | 16 ++++--
 drivers/usb/misc/onboard_usb_dev.c                 |  4 +-
 drivers/usb/typec/anx7411.c                        | 66 ++++++++++++++--------
 drivers/usb/typec/ucsi/ucsi.c                      |  9 ++-
 12 files changed, 116 insertions(+), 72 deletions(-)