Searched +full:a +full:- +full:child +full:- +full:node +full:- +full:property (Results 1 – 3 of 3) sorted by relevance
1 // SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-2-Clause)3 * libfdt - Flat Device Tree manipulation15 * overlay_get_target_phandle - retrieves the target phandle of a fragment17 * @fragment: node offset of the fragment in the overlay20 * overlay fragment when that fragment uses a phandle (target21 * property) instead of a path (target-path property).24 * the phandle pointed by the target property26 * -1, if the phandle was malformed37 if ((len != sizeof(*val)) || (fdt32_to_cpu(*val) == (uint32_t)-1)) in overlay_get_target_phandle()38 return (uint32_t)-1; in overlay_get_target_phandle()[all …]
1 /* SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-2-Clause) */5 * libfdt - Flat Device Tree manipulation22 /* FDT_ERR_NOTFOUND: The requested node or property does not exist */24 /* FDT_ERR_EXISTS: Attempted to create a node or property which30 * device tree to a buffer with more space. */34 /* FDT_ERR_BADOFFSET: Function was passed a structure block35 * offset which is out-of-bounds, or which points to an38 /* FDT_ERR_BADPATH: Function was passed a badly formatted path39 * (e.g. missing a leading / for a function which requires an43 * This can be caused either by an invalid phandle property[all …]
7 * Documentation/devicetree/booting-without-of.txt20 /* dt_init initializes devicetree with a pointer to an fdt, @fdt_ptr */29 /* traverse child nodes */32 s != -FDT_ERR_NOTFOUND; \36 * Abstractions for required node types and properties44 * info is a pointer to device specific data, which may be52 * match a device @dev to an fdt node @fdtnode54 * - a positive value on match55 * - zero on no match56 * - a negative FDT_ERR_* value on failure[all …]