mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 00:17:23 +00:00
env_callback: Mark find_env_callback as static
This is not called outside of env_callback.c so mark static, remove from <env_callback.h> Cc: Joe Hershberger <joe.hershberger@ni.com> Signed-off-by: Tom Rini <trini@ti.com> Acked-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
f32c08da82
commit
268d966dff
2 changed files with 1 additions and 2 deletions
|
@ -31,7 +31,7 @@ DECLARE_GLOBAL_DATA_PTR;
|
||||||
/*
|
/*
|
||||||
* Look up a callback function pointer by name
|
* 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;
|
struct env_clbk_tbl *clbkp;
|
||||||
int i;
|
int i;
|
||||||
|
|
|
@ -67,7 +67,6 @@ struct env_clbk_tbl {
|
||||||
int flags);
|
int flags);
|
||||||
};
|
};
|
||||||
|
|
||||||
struct env_clbk_tbl *find_env_callback(const char *);
|
|
||||||
void env_callback_init(ENTRY *var_entry);
|
void env_callback_init(ENTRY *var_entry);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue