From mboxrd@z Thu Jan 1 00:00:00 1970 From: AKASHI Takahiro Date: Thu, 5 Sep 2019 17:21:31 +0900 Subject: [U-Boot] [PATCH v5 17/19] post: converted with new env interfaces In-Reply-To: <20190905082133.18996-1-takahiro.akashi@linaro.org> References: <20190905082133.18996-1-takahiro.akashi@linaro.org> Message-ID: <20190905082133.18996-18-takahiro.akashi@linaro.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de env_xxx(...) -> env_xxx(ctx_uboot, ...) Signed-off-by: AKASHI Takahiro --- post/post.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post/post.c b/post/post.c index fb751d9a83a5..d8a8279123cc 100644 --- a/post/post.c +++ b/post/post.c @@ -176,7 +176,7 @@ static void post_get_env_flags(int *test_flags) int i, j; for (i = 0; i < varnum; i++) { - if (env_get_f(var[i], list, sizeof(list)) <= 0) + if (env_get_f(ctx_uboot, var[i], list, sizeof(list)) <= 0) continue; for (j = 0; j < post_list_size; j++) -- 2.21.0