forked from Mirrors/opensbi

License identifiers should be machine readable. According to the SPDX v2.3.0 specification annex E parentheses are not used in the SPDX identifier field when specifying multiple licenses [1]. [1] https://spdx.github.io/spdx-spec/v2.3/using-SPDX-short-identifiers-in-source-files/ Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by: Anup Patel <anup@brainfault.org>
39 lines
639 B
C
39 lines
639 B
C
// SPDX-License-Identifier: GPL-2.0-or-later OR BSD-2-Clause
|
|
/*
|
|
* libfdt - Flat Device Tree manipulation
|
|
* Copyright (C) 2012 David Gibson, IBM Corporation.
|
|
*/
|
|
#include "libfdt_env.h"
|
|
|
|
#include <fdt.h>
|
|
#include <libfdt.h>
|
|
|
|
#include "libfdt_internal.h"
|
|
|
|
int fdt_create_empty_tree(void *buf, int bufsize)
|
|
{
|
|
int err;
|
|
|
|
err = fdt_create(buf, bufsize);
|
|
if (err)
|
|
return err;
|
|
|
|
err = fdt_finish_reservemap(buf);
|
|
if (err)
|
|
return err;
|
|
|
|
err = fdt_begin_node(buf, "");
|
|
if (err)
|
|
return err;
|
|
|
|
err = fdt_end_node(buf);
|
|
if (err)
|
|
return err;
|
|
|
|
err = fdt_finish(buf);
|
|
if (err)
|
|
return err;
|
|
|
|
return fdt_open_into(buf, buf, bufsize);
|
|
}
|