All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <gregkh@linuxfoundation.org>
To: Linus Torvalds <torvalds@linux-foundation.org>,
	Andrew Morton <akpm@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org
Subject: [GIT PULL] USB/PHY driver fixes for 4.15-rc6
Date: Sun, 31 Dec 2017 12:46:43 +0100	[thread overview]
Message-ID: <20171231114643.GA28201@kroah.com> (raw)

The following changes since commit 1291a0d5049dbc06baaaf66a9ff3f53db493b19b:

  Linux 4.15-rc4 (2017-12-17 18:59:59 -0800)

are available in the Git repository at:

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

for you to fetch changes up to da99706689481717998d1d48edd389f339eea979:

  usb: xhci: Add XHCI_TRUST_TX_LENGTH for Renesas uPD720201 (2017-12-27 15:24:27 +0100)

----------------------------------------------------------------
USB/PHY fixes for 4.15-rc6

Here are a number of small USB and PHY driver fixes for 4.15-rc6.

Nothing major, but there are a number of regression fixes in here that
resolve issues that have been reported a bunch.  There are also the
usual xhci fixes as well as a number of new usb serial device ids.

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

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

----------------------------------------------------------------
Alexander Kappner (1):
      xhci: Fix use-after-free in xhci debugfs

Arnd Bergmann (1):
      phy: rcar-gen3-usb2: select USB_COMMON

Arvind Yadav (1):
      phy: cpcap-usb: Fix platform_get_irq_byname's error checking.

Chris Zhong (1):
      phy: rockchip-typec: add pm_runtime_disable in err case

Daniel Thompson (1):
      usb: xhci: Add XHCI_TRUST_TX_LENGTH for Renesas uPD720201

Daniele Palmas (1):
      USB: serial: option: add support for Telit ME910 PID 0x1101

Dmitry Fleytman Dmitry Fleytman (1):
      usb: Add device quirk for Logitech HD Pro Webcam C925e

Greg Kroah-Hartman (3):
      Merge tag 'phy-for-4.15-rc_v2' of git://git.kernel.org/.../kishon/linux-phy into usb-linus
      Merge tag 'usb-ci-v4.15-rc5' of git://git.kernel.org/.../peter.chen/usb into usb-linus
      Merge tag 'usb-serial-4.15-rc6' of https://git.kernel.org/.../johan/usb-serial into usb-linus

Johan Hovold (2):
      USB: chipidea: msm: fix ulpi-node lookup
      phy: tegra: fix device-tree node lookups

Juan Zea (1):
      usbip: fix usbip bind writing random string after command in match_busid

Mathias Nyman (2):
      USB: Fix off by one in type-specific length check of BOS SSP capability
      xhci: Fix xhci debugfs NULL pointer dereference in resume from hibernate

Max Schulze (1):
      USB: serial: ftdi_sio: add id for Airbus DS P8GR

Oliver Neukum (1):
      usb: add RESET_RESUME for ELSA MicroLink 56K

Reinhard Speyerer (1):
      USB: serial: qcserial: add Sierra Wireless EM7565

SZ Lin (林上智) (1):
      USB: serial: option: adding support for YUGA CLM920-NC5

Shuah Khan (4):
      usbip: vhci: stop printing kernel pointer addresses in messages
      usbip: stub: stop printing kernel pointer addresses in messages
      usbip: prevent leaking socket pointer address in messages
      usbip: stub_rx: fix static checker warning on unnecessary checks

 drivers/phy/motorola/phy-cpcap-usb.c      |  2 +-
 drivers/phy/renesas/Kconfig               |  2 ++
 drivers/phy/rockchip/phy-rockchip-typec.c |  2 ++
 drivers/phy/tegra/xusb.c                  | 58 +++++++++++++++----------------
 drivers/usb/chipidea/ci_hdrc_msm.c        |  2 +-
 drivers/usb/core/config.c                 |  2 +-
 drivers/usb/core/quirks.c                 |  6 +++-
 drivers/usb/host/xhci-debugfs.c           | 16 ++++-----
 drivers/usb/host/xhci-pci.c               |  3 ++
 drivers/usb/host/xhci.c                   |  6 ++--
 drivers/usb/serial/ftdi_sio.c             |  1 +
 drivers/usb/serial/ftdi_sio_ids.h         |  6 ++++
 drivers/usb/serial/option.c               | 17 +++++++++
 drivers/usb/serial/qcserial.c             |  3 ++
 drivers/usb/usbip/stub_dev.c              |  3 +-
 drivers/usb/usbip/stub_main.c             |  5 +--
 drivers/usb/usbip/stub_rx.c               | 18 ++--------
 drivers/usb/usbip/stub_tx.c               |  6 ++--
 drivers/usb/usbip/usbip_common.c          | 16 +++------
 drivers/usb/usbip/vhci_hcd.c              | 12 +------
 drivers/usb/usbip/vhci_rx.c               | 23 ++++++------
 drivers/usb/usbip/vhci_tx.c               |  3 +-
 tools/usb/usbip/src/utils.c               |  9 +++--
 23 files changed, 117 insertions(+), 104 deletions(-)

                 reply	other threads:[~2017-12-31 11:46 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20171231114643.GA28201@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.