summaryrefslogtreecommitdiff
path: root/env/remote.c
diff options
context:
space:
mode:
Diffstat (limited to 'env/remote.c')
-rw-r--r--env/remote.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/env/remote.c b/env/remote.c
index 0d8865bd67..c013fdd4b0 100644
--- a/env/remote.c
+++ b/env/remote.c
@@ -46,11 +46,13 @@ static int env_remote_save(void)
}
#endif /* CONFIG_CMD_SAVEENV */
-static void env_remote_load(void)
+static int env_remote_load(void)
{
#ifndef ENV_IS_EMBEDDED
env_import((char *)env_ptr, 1);
#endif
+
+ return 0;
}
U_BOOT_ENV_LOCATION(remote) = {