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-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux

Pull devicetree fix from Grant Likely:
"Stupid typo fix for v4.1. One of the IS_ENABLED() macro calls forgot
the CONFIG_ prefix. Only affects a tiny number of platforms, but
still..."

* tag 'devicetree-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux:
of/dynamic: Fix test for PPC_PSERIES

+1 -1
+1 -1
drivers/of/dynamic.c
··· 225 225 phandle = __of_get_property(np, "phandle", &sz); 226 226 if (!phandle) 227 227 phandle = __of_get_property(np, "linux,phandle", &sz); 228 - if (IS_ENABLED(PPC_PSERIES) && !phandle) 228 + if (IS_ENABLED(CONFIG_PPC_PSERIES) && !phandle) 229 229 phandle = __of_get_property(np, "ibm,phandle", &sz); 230 230 np->phandle = (phandle && (sz >= 4)) ? be32_to_cpup(phandle) : 0; 231 231