diff options
author | Simon Glass <sjg@chromium.org> | 2025-05-15 17:31:36 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-05-29 08:30:25 -0600 |
commit | b4135116116a318113968ce9f8f72c711d09dd28 (patch) | |
tree | deb965198e9c7e3cd857a672a489b3e8a937aa32 | |
parent | 600145a8e10418d26f43045f9452610e39ce6f38 (diff) |
phytec: 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/phytec/common/phytec_som_detection_blocks.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/phytec/common/phytec_som_detection_blocks.c b/board/phytec/common/phytec_som_detection_blocks.c index 5f3c27ef0c2..b44ff85972f 100644 --- a/board/phytec/common/phytec_som_detection_blocks.c +++ b/board/phytec/common/phytec_som_detection_blocks.c @@ -4,6 +4,7 @@ * Author: Daniel Schultz <d.schultz@phytec.de> */ +#include <env.h> #include <malloc.h> #include <u-boot/crc.h> #include <net.h> |