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>
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 @@
 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 @@
             #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);
             }
         }
     }