mirror of
https://github.com/dgibson/dtc.git
synced 2026-07-10 13:29:48 -04:00
Merge 54d5b0a9f9 into c19a4bafa5
This commit is contained in:
commit
4c3d5d0be6
2 changed files with 12 additions and 0 deletions
|
|
@ -880,3 +880,8 @@ err:
|
|||
|
||||
return ret;
|
||||
}
|
||||
|
||||
int fdt_overlay_apply_node(void *fdt, int target, void *fdto, int node)
|
||||
{
|
||||
return overlay_apply_node(fdt, target, fdto, node);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2116,6 +2116,13 @@ int fdt_del_node(void *fdt, int nodeoffset);
|
|||
*/
|
||||
int fdt_overlay_apply(void *fdt, void *fdto);
|
||||
|
||||
/**
|
||||
* fdt_overlay_apply_node - Merges a node into the base device tree
|
||||
*
|
||||
* See overlay_apply_node() for details.
|
||||
*/
|
||||
int fdt_overlay_apply_node(void *fdt, int target, void *fdto, int node);
|
||||
|
||||
/**********************************************************************/
|
||||
/* Debugging / informational functions */
|
||||
/**********************************************************************/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue