Add qemu 2.4.0
[kvmfornfv.git] / qemu / dtc / tests / test_tree1_wrong1.dts
1 /dts-v1/;
2
3 /memreserve/ 123456789 010000;
4
5 / {
6         compatible = "test_tree1";
7         prop-int = <0xdeadbeef>;
8         prop-str = "hello world";
9
10         subnode@1 {
11                 compatible = "subnode1";
12                 prop-int = [deadbeef];
13
14                 subsubnode {
15                         compatible = "subsubnode1", "subsubnode";
16                         prop-int = <0xdeadbeef>;
17                 };
18
19                 ss1 {
20                 };
21         };
22
23         subnode@2 {
24                 linux,phandle = <0x2000>;
25                 prop-int = <123456789>;
26
27                 subsubnode@0 {
28                         phandle = <0x2001>;
29                         compatible = "subsubnode2", "subsubnode";
30                         prop-int = <0726746425>;
31                 };
32
33                 ss2 {
34                 };
35         };
36 };