diff options
author | Simon Glass <sjg@chromium.org> | 2025-05-15 17:31:44 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-05-29 08:30:25 -0600 |
commit | 98faae1617b44e53c475adf8552245691e1f05fb (patch) | |
tree | c77ba50cf2923a8385c2d6e6e3a323ce702390c3 | |
parent | 2876ff79b257667438ae7a6132d5ce750ec501ac (diff) |
google: 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/google/chameleonv3/board.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/google/chameleonv3/board.c b/board/google/chameleonv3/board.c index 4d3049689d3..d8ffdd25b38 100644 --- a/board/google/chameleonv3/board.c +++ b/board/google/chameleonv3/board.c @@ -2,6 +2,8 @@ /* * Copyright 2022 Google LLC */ + +#include <env.h> #include <net.h> #include <errno.h> #include "mercury_aa1.h" |