~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to dtc/tests/test_tree1_wrong3.dts

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
        #address-cells = <1>;
 
11
        #size-cells = <0>;
 
12
 
 
13
        subnode@1 {
 
14
                compatible = "subnode1";
 
15
                reg = <1>;
 
16
 
 
17
                subsubnode {
 
18
                        compatible = "subsubnode1", "subsubnode";
 
19
                        prop-int = <0xdeadbeef>;
 
20
                };
 
21
 
 
22
                ss1 {
 
23
                };
 
24
        };
 
25
 
 
26
        subnode@2 {
 
27
                reg = <2>;
 
28
                linux,phandle = <0x2000>;
 
29
                prop-int = <123456789>;
 
30
                #address-cells = <1>;
 
31
                #size-cells = <0>;
 
32
 
 
33
                subsubnode@0 {
 
34
                        reg = <0>;
 
35
                        phandle = <0x2001>;
 
36
                        compatible = "subsubnode2", "subsubnode";
 
37
                        prop-int = <0726746425>;
 
38
                };
 
39
 
 
40
                ss2 {
 
41
                };
 
42
        };
 
43
};