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.

scripts/dtc: Update to upstream version v1.7.0-95-gbcd02b523429

Some pending overlay additions need the graph check fix.

This adds the following commits from upstream:

bcd02b523429 fdtoverlay: remove wrong singular article in a comment
84b056a89d3c checks: relax graph checks for overlays

Signed-off-by: Rob Herring (Arm) <robh@kernel.org>

+14 -6
+12 -4
scripts/dtc/checks.c
··· 1826 1826 if (node->bus != &graph_port_bus) 1827 1827 return; 1828 1828 1829 + check_graph_reg(c, dti, node); 1830 + 1831 + /* skip checks below for overlays */ 1832 + if (dti->dtsflags & DTSF_PLUGIN) 1833 + return; 1834 + 1829 1835 if (!strprefixeq(node->name, node->basenamelen, "port")) 1830 1836 FAIL(c, dti, node, "graph port node name should be 'port'"); 1831 - 1832 - check_graph_reg(c, dti, node); 1833 1837 } 1834 1838 WARNING(graph_port, check_graph_port, NULL, &graph_nodes); 1835 1839 ··· 1868 1864 if (!node->parent || node->parent->bus != &graph_port_bus) 1869 1865 return; 1870 1866 1867 + check_graph_reg(c, dti, node); 1868 + 1869 + /* skip checks below for overlays */ 1870 + if (dti->dtsflags & DTSF_PLUGIN) 1871 + return; 1872 + 1871 1873 if (!strprefixeq(node->name, node->basenamelen, "endpoint")) 1872 1874 FAIL(c, dti, node, "graph endpoint node name should be 'endpoint'"); 1873 - 1874 - check_graph_reg(c, dti, node); 1875 1875 1876 1876 remote_node = get_remote_endpoint(c, dti, node); 1877 1877 if (!remote_node)
+1 -1
scripts/dtc/fdtoverlay.c
··· 48 48 int ret; 49 49 50 50 /* 51 - * We take a copies first, because a failed apply can trash 51 + * We take copies first, because a failed apply can trash 52 52 * both the base blob and the overlay 53 53 */ 54 54 tmpo = xmalloc(fdt_totalsize(overlay));
+1 -1
scripts/dtc/version_gen.h
··· 1 - #define DTC_VERSION "DTC 1.7.0-g1df7b047" 1 + #define DTC_VERSION "DTC 1.7.0-gbcd02b52"