#include "libfdt_env.h"
#include <fdt.h>
#include <libfdt.h>
#include "libfdt_internal.h"
static int fdt_sw_probe_(void *fdt)
{ … }
#define FDT_SW_PROBE(fdt) …
static int fdt_sw_probe_memrsv_(void *fdt)
{ … }
#define FDT_SW_PROBE_MEMRSV(fdt) …
static int fdt_sw_probe_struct_(void *fdt)
{ … }
#define FDT_SW_PROBE_STRUCT(fdt) …
static inline uint32_t sw_flags(void *fdt)
{ … }
static void *fdt_grab_space_(void *fdt, size_t len)
{ … }
int fdt_create_with_flags(void *buf, int bufsize, uint32_t flags)
{ … }
int fdt_create(void *buf, int bufsize)
{ … }
int fdt_resize(void *fdt, void *buf, int bufsize)
{ … }
int fdt_add_reservemap_entry(void *fdt, uint64_t addr, uint64_t size)
{ … }
int fdt_finish_reservemap(void *fdt)
{ … }
int fdt_begin_node(void *fdt, const char *name)
{ … }
int fdt_end_node(void *fdt)
{ … }
static int fdt_add_string_(void *fdt, const char *s)
{ … }
static void fdt_del_last_string_(void *fdt, const char *s)
{ … }
static int fdt_find_add_string_(void *fdt, const char *s, int *allocated)
{ … }
int fdt_property_placeholder(void *fdt, const char *name, int len, void **valp)
{ … }
int fdt_property(void *fdt, const char *name, const void *val, int len)
{ … }
int fdt_finish(void *fdt)
{ … }