[U-Boot] [PATCH 1/2] env_callback: Mark find_env_callback as static

Tom Rini trini at ti.com
Tue Mar 12 17:16:50 CET 2013


This is not called outside of env_callback.c so mark static, remove from
<env_callback.h>

Cc: Joe Hershberger <joe.hershberger at ni.com>
Signed-off-by: Tom Rini <trini at ti.com>
---
 common/env_callback.c  |    2 +-
 include/env_callback.h |    1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/common/env_callback.c b/common/env_callback.c
index 78ca367..78aafb4 100644
--- a/common/env_callback.c
+++ b/common/env_callback.c
@@ -31,7 +31,7 @@ DECLARE_GLOBAL_DATA_PTR;
 /*
  * Look up a callback function pointer by name
  */
-struct env_clbk_tbl *find_env_callback(const char *name)
+static struct env_clbk_tbl *find_env_callback(const char *name)
 {
 	struct env_clbk_tbl *clbkp;
 	int i;
diff --git a/include/env_callback.h b/include/env_callback.h
index 62428d1..dfc41ae 100644
--- a/include/env_callback.h
+++ b/include/env_callback.h
@@ -67,7 +67,6 @@ struct env_clbk_tbl {
 		int flags);
 };
 
-struct env_clbk_tbl *find_env_callback(const char *);
 void env_callback_init(ENTRY *var_entry);
 
 /*
-- 
1.7.9.5



More information about the U-Boot mailing list