summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Spinler <spinler@us.ibm.com>2017-01-31 14:55:19 -0600
committerPatrick Williams <patrick@stwcx.xyz>2017-02-15 20:08:15 +0000
commit41dcb62e6d6730320978a036080a443c34992395 (patch)
tree5c6c81750d5a9de30204b807e559f5d2e404aff9
parent9ac5cbe36086aee70522b57acd68b5751024f6ae (diff)
downloadphosphor-mrw-tools-41dcb62e6d6730320978a036080a443c34992395.tar.gz
phosphor-mrw-tools-41dcb62e6d6730320978a036080a443c34992395.zip
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 <spinler@us.ibm.com>
-rwxr-xr-xgen_devtree.pl7
1 files 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);
}
}
}
OpenPOWER on IntegriCloud