mirror of https://gitlab.com/qemu-project/dtc.git
22 lines
209 B
Plaintext
22 lines
209 B
Plaintext
![]() |
/*
|
||
|
* Copyright (c) 2024 Uwe Kleine-König
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
/dts-v1/;
|
||
|
|
||
|
/ {
|
||
|
node_a: a {
|
||
|
value = <17>;
|
||
|
};
|
||
|
|
||
|
node_b: b {
|
||
|
a = <&node_a>;
|
||
|
};
|
||
|
|
||
|
node_d: d {
|
||
|
b = <&node_b>;
|
||
|
};
|
||
|
};
|