Message ID | ZjdEyLmMIZ1_TPA3@kroah.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 3c15237018eb8a9a56bb49a5dbf4d8eeb154b5cc |
Headers | show |
Series | [GIT,PULL] USB driver fixes for 6.9-rc7 | expand |
The pull request you sent on Sun, 5 May 2024 09:35:20 +0100:
> git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git tags/usb-6.9-rc7
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/3c15237018eb8a9a56bb49a5dbf4d8eeb154b5cc
Thank you!
The following changes since commit ed30a4a51bb196781c8058073ea720133a65596f: Linux 6.9-rc5 (2024-04-21 12:35:54 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git tags/usb-6.9-rc7 for you to fetch changes up to ae11f04b452b5205536e1c02d31f8045eba249dd: usb: typec: tcpm: Check for port partner validity before consuming it (2024-04-30 19:44:45 +0200) ---------------------------------------------------------------- USB driver fixes for 6.9-rc7 Here are some small USB driver fixes for reported problems for 6.9-rc7. Included in here are: - usb core fixes for found issues - typec driver fixes for reported problems - usb gadget driver fixes for reported problems - xhci build fixes - dwc3 driver fixes for reported issues All of these have been in linux-next this past week with no reported problems. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> ---------------------------------------------------------------- Alan Stern (2): USB: core: Fix access violation during port device removal usb: Fix regression caused by invalid ep0 maxpacket in virtual SuperSpeed device Amit Sunil Dhamne (1): usb: typec: tcpm: unregister existing source caps before re-registration Badhri Jagan Sridharan (1): usb: typec: tcpm: Check for port partner validity before consuming it Chris Wulff (1): usb: gadget: f_fs: Fix a race condition when processing setup packets. Guenter Roeck (1): usb: ohci: Prevent missed ohci interrupts Ivan Avdeev (1): usb: gadget: uvc: use correct buffer size when parsing configfs lists Johan Hovold (2): usb: typec: qcom-pmic: fix use-after-free on late probe errors usb: typec: qcom-pmic: fix pdphy start() error handling Peter Korsgaard (1): usb: gadget: composite: fix OS descriptors w_value logic RD Babiera (3): usb: typec: tcpm: queue correct sop type in tcpm_queue_vdm_unlocked usb: typec: tcpm: clear pd_event queue in PORT_RESET usb: typec: tcpm: enforce ready state when queueing alt mode vdm Thinh Nguyen (2): usb: xhci-plat: Don't include xhci.h usb: dwc3: core: Prevent phy suspend during init Wesley Cheng (1): usb: gadget: f_fs: Fix race between aio_cancel() and AIO request complete drivers/usb/core/hub.c | 5 +- drivers/usb/core/port.c | 8 +- drivers/usb/dwc3/core.c | 90 +++++++++------------- drivers/usb/dwc3/core.h | 1 + drivers/usb/dwc3/gadget.c | 2 + drivers/usb/dwc3/host.c | 27 +++++++ drivers/usb/gadget/composite.c | 6 +- drivers/usb/gadget/function/f_fs.c | 9 ++- drivers/usb/gadget/function/uvc_configfs.c | 4 +- drivers/usb/host/ohci-hcd.c | 8 ++ drivers/usb/host/xhci-plat.h | 4 +- drivers/usb/host/xhci-rzv2m.c | 1 + drivers/usb/typec/tcpm/qcom/qcom_pmic_typec.c | 8 +- .../usb/typec/tcpm/qcom/qcom_pmic_typec_pdphy.c | 11 ++- drivers/usb/typec/tcpm/tcpm.c | 42 +++++++--- 15 files changed, 147 insertions(+), 79 deletions(-)