From 7b51b576d6db714e8668a98de67e93651e18123c Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Thu, 1 Aug 2019 09:46:52 -0600 Subject: env: Move env_get() to env.h Move env_get() over to the new header file. Acked-by: Joe Hershberger Signed-off-by: Simon Glass --- common/spl/spl_ext.c | 1 + common/spl/spl_fat.c | 1 + 2 files changed, 2 insertions(+) (limited to 'common/spl') diff --git a/common/spl/spl_ext.c b/common/spl/spl_ext.c index fe05223605..2a6252229c 100644 --- a/common/spl/spl_ext.c +++ b/common/spl/spl_ext.c @@ -1,6 +1,7 @@ // SPDX-License-Identifier: GPL-2.0+ #include +#include #include #include #include diff --git a/common/spl/spl_fat.c b/common/spl/spl_fat.c index 163e540622..aa371ab52c 100644 --- a/common/spl/spl_fat.c +++ b/common/spl/spl_fat.c @@ -9,6 +9,7 @@ */ #include +#include #include #include #include -- cgit