From c4fa493d3a822757af8fbcdc516e12bb7f72d071 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Mon, 29 Oct 2012 05:23:47 +0000 Subject: [PATCH] Support setenv_ulong() and setenv_addr() for powerpc This includes were outside an #ifdef CONFIG_PPC, but there is not reason to exclude powerpc from using them. Move the declaration outside the #ifdef. Signed-off-by: Simon Glass --- include/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/common.h b/include/common.h index b23e90b025..12b3e039a0 100644 --- a/include/common.h +++ b/include/common.h @@ -345,9 +345,9 @@ int saveenv (void); int inline setenv (const char *, const char *); #else int setenv (const char *, const char *); +#endif /* CONFIG_PPC */ int setenv_ulong(const char *varname, ulong value); int setenv_addr(const char *varname, const void *addr); -#endif /* CONFIG_PPC */ #ifdef CONFIG_ARM # include # include -- 2.39.2