瀏覽代碼

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 <sjg@chromium.org>
Simon Glass 12 年之前
父節點
當前提交
c4fa493d3a
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      include/common.h

+ 1 - 1
include/common.h

@@ -345,9 +345,9 @@ int	saveenv	     (void);
 int inline setenv    (const char *, const char *);
 int inline setenv    (const char *, const char *);
 #else
 #else
 int	setenv	     (const char *, const char *);
 int	setenv	     (const char *, const char *);
+#endif /* CONFIG_PPC */
 int setenv_ulong(const char *varname, ulong value);
 int setenv_ulong(const char *varname, ulong value);
 int setenv_addr(const char *varname, const void *addr);
 int setenv_addr(const char *varname, const void *addr);
-#endif /* CONFIG_PPC */
 #ifdef CONFIG_ARM
 #ifdef CONFIG_ARM
 # include <asm/mach-types.h>
 # include <asm/mach-types.h>
 # include <asm/setup.h>
 # include <asm/setup.h>