diff options
author | Simon Glass <sjg@chromium.org> | 2017-08-03 12:22:03 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-08-15 20:50:28 -0400 |
commit | ac358beb85362fb2fac47aaec40a7e1bca49656c (patch) | |
tree | 1d2b77ef10563b86d63255e6a1b3870e48e78199 /env/nowhere.c | |
parent | 7938822a6b75b69fff9793b6b1769dddf1249525 (diff) | |
download | u-boot-midas-ac358beb85362fb2fac47aaec40a7e1bca49656c.tar.gz u-boot-midas-ac358beb85362fb2fac47aaec40a7e1bca49656c.tar.bz2 u-boot-midas-ac358beb85362fb2fac47aaec40a7e1bca49656c.zip |
env: Drop the env_name_spec global
Add a name to the driver and use that instead of the global variable
declared by each driver.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'env/nowhere.c')
-rw-r--r-- | env/nowhere.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/env/nowhere.c b/env/nowhere.c index 1d2ae85a57..1a17d6978b 100644 --- a/env/nowhere.c +++ b/env/nowhere.c @@ -19,4 +19,5 @@ env_t *env_ptr; U_BOOT_ENV_LOCATION(nowhere) = { .location = ENVL_NOWHERE, + ENV_NAME("nowhere") }; |