From 41dcb62e6d6730320978a036080a443c34992395 Mon Sep 17 00:00:00 2001 From: Matt Spinler Date: Tue, 31 Jan 2017 14:55:19 -0600 Subject: gen_devtree: Reorder some nodes No functional difference, just easier to diff to the version in the linux source tree. Change-Id: I8dca594eb2b005e00922ac9f217d77722ef16dd8 Signed-off-by: Matt Spinler --- gen_devtree.pl | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gen_devtree.pl b/gen_devtree.pl index d4f27e8..fabae8e 100755 --- a/gen_devtree.pl +++ b/gen_devtree.pl @@ -76,9 +76,10 @@ printNodes($f, 0, getOtherFlashNodes()); printNode($f, 0, "lpc_ctrl", getLPCNode()); printNode($f, 0, "mbox", getMBoxNode()); -printNodes($f, 0, getI2CNodes()); -printNodes($f, 0, getMacNodes()); printNodes($f, 0, getUARTNodes()); +printNodes($f, 0, getMacNodes()); + +printNodes($f, 0, getI2CNodes()); printNodes($f, 0, getVuartNodes()); printIncludes($f, POST_ROOT_INCLUDES); @@ -1165,7 +1166,7 @@ sub printNode #print 1 include per line my @incs = split(',', $vals{$v}); foreach my $i (@incs) { - print $f qq(#include "$i";\n); + print $f qq(#include "$i"\n); } } } -- cgit v1.2.1