diff options
author | Simon Glass <sjg@chromium.org> | 2025-05-15 17:31:43 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-05-29 08:30:25 -0600 |
commit | 2876ff79b257667438ae7a6132d5ce750ec501ac (patch) | |
tree | 2743921c522aec3b99a2bd695cfbf00ebb4108d6 | |
parent | 6d9d6ba71ab9391e5fb163634bfb1cc65987cdd4 (diff) |
freescale: Include env.h to permit reading the environment
This file reads from the environment but does not include the correct
header. Update it.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | board/freescale/mx7dsabresd/mx7dsabresd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/freescale/mx7dsabresd/mx7dsabresd.c b/board/freescale/mx7dsabresd/mx7dsabresd.c index 3db167c0dad..bef4f901ff7 100644 --- a/board/freescale/mx7dsabresd/mx7dsabresd.c +++ b/board/freescale/mx7dsabresd/mx7dsabresd.c @@ -3,6 +3,7 @@ * Copyright (C) 2015 Freescale Semiconductor, Inc. */ +#include <env.h> #include <init.h> #include <net.h> #include <asm/arch/clock.h> |