Add qemu 2.4.0
[kvmfornfv.git] / qemu / dtc / tests / test_tree1_wrong6.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                         extra-prop;
22                 };
23         };
24
25         subnode@2 {
26                 linux,phandle = <0x2000>;
27                 prop-int = <123456789>;
28
29                 subsubnode@0 {
30                         phandle = <0x2001>;
31                         compatible = "subsubnode2", "subsubnode";
32                         prop-int = <0726746425>;
33                 };
34
35                 ss2 {
36                 };
37         };
38 };