Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'usb-7.0-final' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb

Pull USB fix from Greg KH:
"Here is a single USB fix for a reported regression in a recent USB
typec patch for 7.0-final. Sorry for the late submission, but it does
fix a problem that people have been seeing with 7.0-rc7 and the stable
kernels (due to a backported fix from there.)

This has been in linux-next this week with no reported issues, and the
reporter (Takashi), has said it resolves the problem they were seeing"

* tag 'usb-7.0-final' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb:
usb: typec: ucsi: skip connector validation before init

+2 -1
+2 -1
drivers/usb/typec/ucsi/ucsi.c
··· 44 44 return; 45 45 46 46 if (UCSI_CCI_CONNECTOR(cci)) { 47 - if (UCSI_CCI_CONNECTOR(cci) <= ucsi->cap.num_connectors) 47 + if (!ucsi->cap.num_connectors || 48 + UCSI_CCI_CONNECTOR(cci) <= ucsi->cap.num_connectors) 48 49 ucsi_connector_change(ucsi, UCSI_CCI_CONNECTOR(cci)); 49 50 else 50 51 dev_err(ucsi->dev, "bogus connector number in CCI: %lu\n",