From bcdfb8d5a531fbc65dceb60b4205f5a0fbd49a97 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Thu, 3 Aug 2017 12:21:51 -0600 Subject: env: common: Make env_get_addr/get_char_memory() static These functions are not used outside this file. Make them static and order them to avoid forward declarations. Signed-off-by: Simon Glass Reviewed-by: Tom Rini --- env/common.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'env/common.c') diff --git a/env/common.c b/env/common.c index d9c0c4e..5a17e52 100644 --- a/env/common.c +++ b/env/common.c @@ -41,7 +41,15 @@ static uchar env_get_char_init(int index) return default_environment[index]; } -uchar env_get_char_memory(int index) +static const uchar *env_get_addr(int index) +{ + if (gd->env_valid) + return (uchar *)(gd->env_addr + index); + else + return &default_environment[index]; +} + +static uchar env_get_char_memory(int index) { return *env_get_addr(index); } @@ -55,14 +63,6 @@ uchar env_get_char(int index) return env_get_char_init(index); } -const uchar *env_get_addr(int index) -{ - if (gd->env_valid) - return (uchar *)(gd->env_addr + index); - else - return &default_environment[index]; -} - /* * Read an environment variable as a boolean * Return -1 if variable does not exist (default to true) -- cgit v1.1