forked from Imagelibrary/rtems
Import from: git://git.kernel.org/pub/scm/utils/dtc/dtc.git Commit: 604e61e081e3c6c8fa1a8189c71cb3908a5bbc1e Date: 2015-09-29T09:09:08Z
55 lines
651 B
Plaintext
55 lines
651 B
Plaintext
/*
|
|
* Copyright (c) 2015 embedded brains GmbH. All rights reserved.
|
|
*
|
|
* embedded brains GmbH
|
|
* Dornierstr. 4
|
|
* 82178 Puchheim
|
|
* Germany
|
|
* <rtems@embedded-brains.de>
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.org/license/LICENSE.
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
compatible = "a,b";
|
|
#address-cells = <1>;
|
|
#size-cells = <2>;
|
|
model = "c";
|
|
|
|
d {
|
|
e = "f";
|
|
g;
|
|
|
|
h@0 {
|
|
};
|
|
|
|
h@1 {
|
|
w = <123>;
|
|
};
|
|
};
|
|
|
|
aliases {
|
|
k = "/m@1248";
|
|
};
|
|
|
|
l: m@1248 {
|
|
n = <0xdeadbeef 0x12345678>;
|
|
|
|
o {
|
|
p;
|
|
};
|
|
|
|
q {
|
|
r = "s";
|
|
};
|
|
};
|
|
|
|
t {
|
|
u = <&l>;
|
|
};
|
|
};
|