diff options
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 a5ff54c287..16d8f939db 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), }; |