Linux USB
 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.11-rc3
Date: Sun, 11 Aug 2024 15:24:20 +0200	[thread overview]
Message-ID: <Zri7hMbzgp6fZeAa@kroah.com> (raw)

The following changes since commit 8400291e289ee6b2bf9779ff1c83a291501f017b:

  Linux 6.11-rc1 (2024-07-28 14:19:55 -0700)

are available in the Git repository at:

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

for you to fetch changes up to 65ba8cef0416816b912c04850fc2468329994353:

  usb: typec: ucsi: Fix a deadlock in ucsi_send_command_common() (2024-08-07 12:48:30 +0200)

----------------------------------------------------------------
USB fixes for 6.11-rc3

Here are a number of small USB driver fixes for reported issues for
6.11-rc3.  Included in here are:
  - usb serial driver MODULE_DESCRIPTION() updates
  - usb serial driver fixes
  - typec driver fixes
  - usb-ip driver fix
  - gadget driver fixes
  - dt binding update

All of these have been in linux-next with no reported issues.

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

----------------------------------------------------------------
Alexander Stein (1):
      dt-bindings: usb: microchip,usb2514: Add USB2517 compatible

Chris Wulff (2):
      usb: gadget: u_audio: Check return codes from usb_ep_enable and config_ep_by_speed.
      usb: gadget: core: Check for unset descriptor

Dan Carpenter (1):
      usb: typec: tcpci: Fix error code in tcpci_check_std_output_cap()

Dr. David Alan Gilbert (1):
      USB: serial: spcp8x5: remove unused struct 'spcp8x5_usb_ctrl_arg'

Greg Kroah-Hartman (2):
      Merge tag 'usb-serial-6.11-rc1' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial into usb-linus
      Merge tag 'usb-serial-6.11-rc2' of https://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial into usb-linus

Harshit Mogalapalli (2):
      usb: typec: tipd: Fix dereferencing freeing memory in tps6598x_apply_patch()
      usb: typec: tipd: Delete extra semi-colon

Heikki Krogerus (1):
      usb: typec: ucsi: Fix a deadlock in ucsi_send_command_common()

Javier Carrasco (2):
      USB: serial: garmin_gps: annotate struct garmin_packet with __counted_by
      USB: serial: garmin_gps: use struct_size() to allocate pkt

Jeff Johnson (1):
      USB: serial: add missing MODULE_DESCRIPTION() macros

Konrad Dybcio (1):
      usb: typec: fsa4480: Check if the chip is really there

Marek Marczykowski-Górecki (1):
      USB: serial: debug: do not echo input by default

Oliver Neukum (1):
      usb: vhci-hcd: Do not drop references before new references are gained

Prashanth K (1):
      usb: gadget: u_serial: Set start_delayed during suspend

Takashi Iwai (1):
      usb: gadget: midi2: Fix the response for FB info with block 0xff

Tudor Ambarus (2):
      usb: gadget: f_fs: restore ffs_func_disable() functionality
      usb: gadget: f_fs: pull out f->disable() from ffs_func_set_alt()

Xu Yang (1):
      usb: typec: tcpm: avoid sink goto SNK_UNATTACHED state if not received source capability message

 .../devicetree/bindings/usb/microchip,usb2514.yaml |  1 +
 drivers/usb/gadget/function/f_fs.c                 | 32 ++++++++++-------
 drivers/usb/gadget/function/f_midi2.c              | 21 +++++++----
 drivers/usb/gadget/function/u_audio.c              | 42 +++++++++++++++++-----
 drivers/usb/gadget/function/u_serial.c             |  1 +
 drivers/usb/gadget/udc/core.c                      | 10 +++---
 drivers/usb/serial/ch341.c                         |  1 +
 drivers/usb/serial/garmin_gps.c                    |  5 ++-
 drivers/usb/serial/mxuport.c                       |  1 +
 drivers/usb/serial/navman.c                        |  1 +
 drivers/usb/serial/qcaux.c                         |  1 +
 drivers/usb/serial/spcp8x5.c                       | 10 ------
 drivers/usb/serial/symbolserial.c                  |  1 +
 drivers/usb/serial/usb-serial-simple.c             |  1 +
 drivers/usb/serial/usb_debug.c                     |  8 +++++
 drivers/usb/typec/mux/fsa4480.c                    | 14 ++++++++
 drivers/usb/typec/tcpm/tcpci.c                     |  2 +-
 drivers/usb/typec/tcpm/tcpm.c                      |  2 +-
 drivers/usb/typec/tipd/core.c                      |  4 +--
 drivers/usb/typec/ucsi/ucsi.c                      | 11 +++---
 drivers/usb/usbip/vhci_hcd.c                       |  9 +++--
 21 files changed, 119 insertions(+), 59 deletions(-)

             reply	other threads:[~2024-08-11 13:24 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-11 13:24 Greg KH [this message]
2024-08-11 17:03 ` [GIT PULL] USB driver fixes for 6.11-rc3 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=Zri7hMbzgp6fZeAa@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox