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/sata.c | |
parent | 7938822a6b75b69fff9793b6b1769dddf1249525 (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/sata.c')
-rw-r--r-- | env/sata.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/env/sata.c b/env/sata.c index a5ff54c2879..16d8f939db6 100644 --- a/env/sata.c +++ b/env/sata.c @@ -24,8 +24,6 @@ #error CONFIG_ENV_OFFSET or CONFIG_ENV_SIZE not defined #endif -char *env_name_spec = "SATA"; - DECLARE_GLOBAL_DATA_PTR; __weak int sata_get_env_dev(void) @@ -119,6 +117,7 @@ static void env_sata_load(void) U_BOOT_ENV_LOCATION(sata) = { .location = ENVL_ESATA, + ENV_NAME("SATA") .load = env_sata_load, .save = env_save_ptr(env_sata_save), }; |