diff options
author | Simon Glass <sjg@chromium.org> | 2025-05-15 17:31:42 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-05-29 08:30:25 -0600 |
commit | 6d9d6ba71ab9391e5fb163634bfb1cc65987cdd4 (patch) | |
tree | a5631f7d3087457d3aa77c05bdccc114622f1f44 | |
parent | f24a197973ad0c5f473401b16a801794f2764678 (diff) |
amlogic: Include env.h to permit reading the environment
This file reads from the environment but does not include the correct
header. Update it.
Reviewed-by: Viacheslav Bocharov <adeep@lexina.in>
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | board/amlogic/jethub-j100/jethub-j100.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/amlogic/jethub-j100/jethub-j100.c b/board/amlogic/jethub-j100/jethub-j100.c index b770a1f8c53..9e87fb9f9d7 100644 --- a/board/amlogic/jethub-j100/jethub-j100.c +++ b/board/amlogic/jethub-j100/jethub-j100.c @@ -5,6 +5,7 @@ */ #include <dm.h> +#include <env.h> #include <init.h> #include <net.h> #include <asm/io.h> |