mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-25 12:33:41 +00:00
24 lines
325 B
Text
24 lines
325 B
Text
|
/*
|
||
|
* Test device tree file for dtoc
|
||
|
*
|
||
|
* Copyright 2017 Google, Inc
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
/dts-v1/;
|
||
|
|
||
|
/ {
|
||
|
phandle: phandle-target {
|
||
|
u-boot,dm-pre-reloc;
|
||
|
compatible = "target";
|
||
|
intval = <1>;
|
||
|
};
|
||
|
|
||
|
phandle-source {
|
||
|
u-boot,dm-pre-reloc;
|
||
|
compatible = "source";
|
||
|
clocks = <&phandle 1>;
|
||
|
};
|
||
|
};
|