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-6.6-rc2' 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 much-reported regression for 6.6-rc1.

It resolves a crash in the typec debugfs code for many systems. It's
been in linux-next with no reported issues, and many people have
reported it resolving their problem with 6.6-rc1"

* tag 'usb-6.6-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb:
usb: typec: ucsi: Fix NULL pointer dereference

+3
+3
drivers/usb/typec/ucsi/debugfs.c
··· 84 84 85 85 void ucsi_debugfs_unregister(struct ucsi *ucsi) 86 86 { 87 + if (IS_ERR_OR_NULL(ucsi) || !ucsi->debugfs) 88 + return; 89 + 87 90 debugfs_remove_recursive(ucsi->debugfs->dentry); 88 91 kfree(ucsi->debugfs); 89 92 }