summaryrefslogtreecommitdiff
path: root/include/environment.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-08-01 18:47:03 +0300
committerTom Rini <trini@konsulko.com>2019-08-11 23:43:41 +0300
commitbe54ec1624fb9a31b3fa30d55662d2c7b0832162 (patch)
treef6a622e0be34619ce7058af850c5048b34ad2fad /include/environment.h
parentc62f62b0fccca951bdc91f3ab85f495fdcc0efb2 (diff)
downloadu-boot-be54ec1624fb9a31b3fa30d55662d2c7b0832162.tar.xz
env: Rename environment to embedded_environment
The name 'environment' is widely used in U-Boot so is not a very useful name of a variable. Rename it to better indicate its purpose. Signed-off-by: Simon Glass <sjg@chromium.org> Acked-by: Joe Hershberger <joe.hershberger@ni.com> Reviewed-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
Diffstat (limited to 'include/environment.h')
-rw-r--r--include/environment.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/environment.h b/include/environment.h
index d23b92833e..44a527e1fa 100644
--- a/include/environment.h
+++ b/include/environment.h
@@ -153,7 +153,7 @@ typedef struct environment_s {
} env_t;
#ifdef ENV_IS_EMBEDDED
-extern env_t environment;
+extern env_t embedded_environment;
#endif /* ENV_IS_EMBEDDED */
extern const unsigned char default_environment[];