blob: dbc56ec62e9f4803fe7f9cbec4e5830fd509e321 [file] [log] [blame]
Masahiro Yamada25ad2022018-01-21 19:19:16 +09001#ifndef UBOOT_LIBFDT_H
2#define UBOOT_LIBFDT_H
3/*
4 * SPDX-License-Identifier: GPL-2.0+ BSD-2-Clause
5 */
6
Jan Kundrátb95a5192017-11-03 03:06:35 +01007#include "../lib/libfdt/libfdt.h"
Masahiro Yamada25ad2022018-01-21 19:19:16 +09008
9extern struct fdt_header *working_fdt; /* Pointer to the working fdt */
10
11/* adding a ramdisk needs 0x44 bytes in version 2008.10 */
12#define FDT_RAMDISK_OVERHEAD 0x80
13
14#endif /* UBOOT_LIBFDT_H */