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

Pull Devicetree fix from Rob Herring:
"A single build fix for powerpc due to device_node.type removal"

* tag 'devicetree-fixes-for-5.0-2' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux:
powerpc: chrp: Use of_node_is_type to access device_type

+1 -2
+1 -2
arch/powerpc/platforms/chrp/setup.c
··· 538 538 /* see if there is a keyboard in the device tree 539 539 with a parent of type "adb" */ 540 540 for_each_node_by_name(kbd, "keyboard") 541 - if (kbd->parent && kbd->parent->type 542 - && strcmp(kbd->parent->type, "adb") == 0) 541 + if (of_node_is_type(kbd->parent, "adb")) 543 542 break; 544 543 of_node_put(kbd); 545 544 if (kbd)