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