From 5ea1d10f9813215a145235bb50a496e9ffec3b32 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Sat, 26 Aug 2017 21:17:05 -0400 Subject: [PATCH] cmd/spl.c: Include for fdt_totalsize In order to be able to reliably use fdt_totalsize, we must have included. Fixes: a6d2f185d433 ("cmd: spl: provide address and size of prepared FDT ...") Signed-off-by: Tom Rini --- cmd/spl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/spl.c b/cmd/spl.c index 1165b786d3..ad033652d4 100644 --- a/cmd/spl.c +++ b/cmd/spl.c @@ -8,6 +8,7 @@ #include #include #include +#include DECLARE_GLOBAL_DATA_PTR; -- 2.39.5