1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3 * Copyright 2023 Toradex - https://www.toradex.com/
4 */
5
6#ifndef _COMMON_FDT_H
7#define _COMMON_FDT_H
8
9int fdt_fixup_msmc_ram_k3(void *blob);
10int fdt_del_node_path(void *blob, const char *path);
11int fdt_fixup_reserved(void *blob, const char *name,
12		       unsigned int new_address, unsigned int new_size);
13
14#endif /* _COMMON_FDT_H */
15