mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-10 17:26:59 +02:00
arm: k3: fix fdt_del_node_path implicit declaration and a missing include
Fix missing declaration of fdt_del_node_path() while compiling am625_fdt.c and
missing common_fdt.h include in common_fdt.c
Fixes: 70aa5a94d4
("arm: mach-k3: am62: Fixup CPU core, gpu and pru nodes in fdt")
Signed-off-by: Emanuele Ghidoli <emanuele.ghidoli@toradex.com>
This commit is contained in:
parent
784f7382de
commit
2a61447414
@ -7,6 +7,7 @@
|
|||||||
#include <dm.h>
|
#include <dm.h>
|
||||||
#include <fdt_support.h>
|
#include <fdt_support.h>
|
||||||
#include <linux/soc/ti/ti_sci_protocol.h>
|
#include <linux/soc/ti/ti_sci_protocol.h>
|
||||||
|
#include "common_fdt.h"
|
||||||
|
|
||||||
static int fdt_fixup_msmc_ram(void *blob, char *parent_path, char *node_name)
|
static int fdt_fixup_msmc_ram(void *blob, char *parent_path, char *node_name)
|
||||||
{
|
{
|
||||||
|
@ -7,5 +7,6 @@
|
|||||||
#define _COMMON_FDT_H
|
#define _COMMON_FDT_H
|
||||||
|
|
||||||
int fdt_fixup_msmc_ram_k3(void *blob);
|
int fdt_fixup_msmc_ram_k3(void *blob);
|
||||||
|
int fdt_del_node_path(void *blob, const char *path);
|
||||||
|
|
||||||
#endif /* _COMMON_FDT_H */
|
#endif /* _COMMON_FDT_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user