diff options
author | Simon Glass | 2019-08-02 09:44:25 -0600 |
---|---|---|
committer | Tom Rini | 2019-08-11 19:27:31 -0400 |
commit | f3998fdc4d0871727d7be6838bac750c6323c0a8 (patch) | |
tree | a70bc57308dd8c516ec78ea057dbfd0ac331214b /common | |
parent | e7dcf5645f09504573f534b0fc9abbbc6ff8a5ad (diff) |
env: Rename environment.h to env_internal.h
This file contains lots of internal details about the environment. Most
code can include env.h instead, calling the functions there as needed.
Rename this file and add a comment at the top to indicate its internal
nature.
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>
[trini: Fixup apalis-tk1.c]
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/board_f.c | 2 | ||||
-rw-r--r-- | common/board_r.c | 2 | ||||
-rw-r--r-- | common/console.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/common/board_f.c b/common/board_f.c index 18937bf6f5d..31181a9dc45 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -15,7 +15,7 @@ #include <cpu.h> #include <dm.h> #include <env.h> -#include <environment.h> +#include <env_internal.h> #include <fdtdec.h> #include <fs.h> #include <i2c.h> diff --git a/common/board_r.c b/common/board_r.c index f4193cdbecc..1dabf5a11c2 100644 --- a/common/board_r.c +++ b/common/board_r.c @@ -19,7 +19,7 @@ #include <console.h> #include <dm.h> #include <env.h> -#include <environment.h> +#include <env_internal.h> #include <fdtdec.h> #include <ide.h> #include <initcall.h> diff --git a/common/console.c b/common/console.c index 0f7e0916cd2..89b1e9590ca 100644 --- a/common/console.c +++ b/common/console.c @@ -17,7 +17,7 @@ #include <serial.h> #include <stdio_dev.h> #include <exports.h> -#include <environment.h> +#include <env_internal.h> #include <watchdog.h> DECLARE_GLOBAL_DATA_PTR; |