mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
8fed2eb20c
Update this function to return more detail about a property that contains phandles. This will allow (in a future commit) more accurate handling of these properties. Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Kever Yang <kever.yang@rock-chips.com>
24 lines
361 B
Text
24 lines
361 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>;
|
|
#clock-cells = <1>;
|
|
};
|
|
|
|
phandle-source {
|
|
u-boot,dm-pre-reloc;
|
|
compatible = "source";
|
|
clocks = <&phandle 1>;
|
|
};
|
|
};
|