1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 08:42:12 +02:00

cmd/spl.c: Include <libfdt.h> for fdt_totalsize

In order to be able to reliably use fdt_totalsize, we must have
<libfdt.h> included.

Fixes: 767cb74a00 ("cmd: spl: provide address and size of prepared FDT ...")
Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Tom Rini
2017-08-26 21:17:05 -04:00
parent 8b3cec7da1
commit c3b572c4e2

View File

@@ -8,6 +8,7 @@
#include <common.h>
#include <command.h>
#include <cmd_spl.h>
#include <libfdt.h>
DECLARE_GLOBAL_DATA_PTR;