]> git.sur5r.net Git - u-boot/blobdiff - env/fat.c
env: Make the env save message a bit more explicit
[u-boot] / env / fat.c
index b959013a88feb20feefffc11e1050a706f72bbb2..ec49c39053691a5d6638fc64af2e9caf910ca5ea 100644 (file)
--- a/env/fat.c
+++ b/env/fat.c
 # endif
 #endif
 
-char *env_name_spec = "FAT";
-
-env_t *env_ptr;
-
 DECLARE_GLOBAL_DATA_PTR;
 
-static int env_fat_init(void)
-{
-       /* use default */
-       gd->env_addr = (ulong)&default_environment[0];
-       gd->env_valid = ENV_VALID;
-
-       return 0;
-}
-
 #ifdef CMD_SAVEENV
 static int env_fat_save(void)
 {
@@ -87,7 +74,7 @@ static int env_fat_save(void)
 #endif /* CMD_SAVEENV */
 
 #ifdef LOADENV
-static void env_fat_load(void)
+static int env_fat_load(void)
 {
        ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE);
        struct blk_desc *dev_desc = NULL;
@@ -116,20 +103,22 @@ static void env_fat_load(void)
        }
 
        env_import(buf, 1);
-       return;
+       return 0;
 
 err_env_relocate:
        set_default_env(NULL);
+
+       return -EIO;
 }
 #endif /* LOADENV */
 
 U_BOOT_ENV_LOCATION(fat) = {
        .location       = ENVL_FAT,
+       ENV_NAME("FAT")
 #ifdef LOADENV
        .load           = env_fat_load,
 #endif
 #ifdef CMD_SAVEENV
        .save           = env_save_ptr(env_fat_save),
 #endif
-       .init           = env_fat_init,
 };