From 310fb14b2631b2175efe9b0e56d0f1630ad02d91 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Thu, 3 Aug 2017 12:22:07 -0600 Subject: env: Drop env_relocate_spec() in favour of env_load() This is a strange name for a function that loads the environment. There is now only one implementation of this function, so use the new env_load() function directly instead. Signed-off-by: Simon Glass Reviewed-by: Tom Rini --- board/birdland/bav335x/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'board/birdland') diff --git a/board/birdland/bav335x/board.c b/board/birdland/bav335x/board.c index 67aca3c..b49365e 100644 --- a/board/birdland/bav335x/board.c +++ b/board/birdland/bav335x/board.c @@ -162,7 +162,7 @@ int spl_start_uboot(void) #ifdef CONFIG_SPL_ENV_SUPPORT env_init(); - env_relocate_spec(); + env_load(); if (getenv_yesno("boot_os") != 1) return 1; #endif -- cgit v1.1