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 'devicetree-fixes-for-6.8-2' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux

Pull devicetree fix from Rob Herring:
"One fix for a bug in fw_devlink handling of OF graph. This doesn't
completely fix the reported problems, but it's with users adding out
of tree code"

* tag 'devicetree-fixes-for-6.8-2' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux:
of: property: fw_devlink: Fix stupid bug in remote-endpoint parsing

+1 -1
+1 -1
drivers/of/property.c
··· 1304 1304 int index) 1305 1305 { 1306 1306 /* Return NULL for index > 0 to signify end of remote-endpoints. */ 1307 - if (!index || strcmp(prop_name, "remote-endpoint")) 1307 + if (index > 0 || strcmp(prop_name, "remote-endpoint")) 1308 1308 return NULL; 1309 1309 1310 1310 return of_graph_get_remote_port_parent(np);