summaryrefslogtreecommitdiff
path: root/env/remote.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2017-08-03 12:22:03 -0600
committerTom Rini <trini@konsulko.com>2017-08-15 20:50:28 -0400
commitac358beb85362fb2fac47aaec40a7e1bca49656c (patch)
tree1d2b77ef10563b86d63255e6a1b3870e48e78199 /env/remote.c
parent7938822a6b75b69fff9793b6b1769dddf1249525 (diff)
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/remote.c')
-rw-r--r--env/remote.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/env/remote.c b/env/remote.c
index c5dce5b966..0d8865bd67 100644
--- a/env/remote.c
+++ b/env/remote.c
@@ -11,8 +11,6 @@
#include <environment.h>
#include <linux/stddef.h>
-char *env_name_spec = "Remote";
-
#ifdef ENV_IS_EMBEDDED
env_t *env_ptr = &environment;
#else /* ! ENV_IS_EMBEDDED */
@@ -57,6 +55,7 @@ static void env_remote_load(void)
U_BOOT_ENV_LOCATION(remote) = {
.location = ENVL_REMOTE,
+ ENV_NAME("Remote")
.load = env_remote_load,
.save = env_save_ptr(env_remote_save),
.init = env_remote_init,