diff options
author | Simon Glass <sjg@chromium.org> | 2019-08-01 09:47:03 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-11 16:43:41 -0400 |
commit | be54ec1624fb9a31b3fa30d55662d2c7b0832162 (patch) | |
tree | f6a622e0be34619ce7058af850c5048b34ad2fad /include/environment.h | |
parent | c62f62b0fccca951bdc91f3ab85f495fdcc0efb2 (diff) | |
download | u-boot-be54ec1624fb9a31b3fa30d55662d2c7b0832162.tar.gz |
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.h | 2 |
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[]; |