diff options
author | Warner Losh <imp@FreeBSD.org> | 2012-07-24 04:12:44 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2012-07-24 04:12:44 +0000 |
commit | ab1c86b34d2455fbd8cf2a9a404b0d7fd4ad28b1 (patch) | |
tree | b7aff42d7f7ddb5d70852db577a01deac8c23842 /tests/test_tree1_wrong3.dts | |
parent | bae61446cfa6a4b67c0197a6c7535190b80c8a3d (diff) |
Add missing files in f807af192828222dee7a5c9f94d999673bb4d8a1 import.vendor/dtc/dtc-f807af19
Notes
Notes:
svn path=/vendor/dtc/dist/; revision=238737
svn path=/vendor/dtc/dtc-f807af19/dist/; revision=238738; tag=vendor/dtc/dtc-f807af19
Diffstat (limited to 'tests/test_tree1_wrong3.dts')
-rw-r--r-- | tests/test_tree1_wrong3.dts | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/test_tree1_wrong3.dts b/tests/test_tree1_wrong3.dts new file mode 100644 index 000000000000..80be2fac8f63 --- /dev/null +++ b/tests/test_tree1_wrong3.dts @@ -0,0 +1,36 @@ +/dts-v1/; + +/memreserve/ 0xdeadbeef00000000 0x100000; +/memreserve/ 123456789 010000; + +/ { + compatible = "test_tree1"; + prop-int = <0xdeadbeef>; + prop-str = "hello world"; + + subnode@1 { + compatible = "subnode1"; + + subsubnode { + compatible = "subsubnode1", "subsubnode"; + prop-int = <0xdeadbeef>; + }; + + ss1 { + }; + }; + + subnode@2 { + linux,phandle = <0x2000>; + prop-int = <123456789>; + + subsubnode@0 { + phandle = <0x2001>; + compatible = "subsubnode2", "subsubnode"; + prop-int = <0726746425>; + }; + + ss2 { + }; + }; +}; |