diff options
author | Simon Glass <sjg@chromium.org> | 2015-04-20 12:37:30 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-05-05 20:58:40 -0600 |
commit | fbe07ba0f8486d8c77d686caec1f840aecb01424 (patch) | |
tree | 97e85c4424e33dd63ec3035a0637d9ae1bce57fc | |
parent | 8e7083fc95774017dba66cff85918ba9f0d0f12b (diff) |
dm: test: dts: Sort the aliases in the test device tree file
Sort these aliases to avoid confusion as to what is present.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>
-rw-r--r-- | test/dm/test.dts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/dm/test.dts b/test/dm/test.dts index d0c40be6b0a..dd6d0acc27d 100644 --- a/test/dm/test.dts +++ b/test/dm/test.dts @@ -8,18 +8,18 @@ aliases { console = &uart0; + eth0 = "/eth@10002000"; + eth5 = ð_5; i2c0 = "/i2c@0"; - spi0 = "/spi@0"; pci0 = &pci; - testfdt6 = "/e-test"; + spi0 = "/spi@0"; testbus3 = "/some-bus"; testfdt0 = "/some-bus/c-test@0"; testfdt1 = "/some-bus/c-test@1"; testfdt3 = "/b-test"; testfdt5 = "/some-bus/c-test@5"; + testfdt6 = "/e-test"; testfdt8 = "/a-test"; - eth0 = "/eth@10002000"; - eth5 = ð_5; usb0 = &usb_0; usb1 = &usb_1; usb2 = &usb_2; |