summaryrefslogtreecommitdiffstats
path: root/include/command.h
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2015-12-07 08:23:29 -0500
committerTom Rini <trini@konsulko.com>2015-12-07 08:35:23 -0500
commitcbb2df2018ab07cb8887715d30d445584e108366 (patch)
tree7703310f12dc3c77f918606f55ccdb49ddbb607f /include/command.h
parentdcf4cb068e19a7f39e4a295102b247376bd27c95 (diff)
downloadblackbird-obmc-uboot-cbb2df2018ab07cb8887715d30d445584e108366.tar.gz
blackbird-obmc-uboot-cbb2df2018ab07cb8887715d30d445584e108366.zip
CONFIG_NEEDS_MANUAL_RELOC: Fix warnings when not set
Now that we may compile (but not link) code calling fixup_cmdtable when this is not set, we need to always have the declaration available. We should also make sure that anyone calling the function includes <command.h> as that's where the function declaration is. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/command.h')
-rw-r--r--include/command.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/command.h b/include/command.h
index 6c04cd9007..2ae9b6c2e6 100644
--- a/include/command.h
+++ b/include/command.h
@@ -142,6 +142,7 @@ enum command_ret_t {
int cmd_process(int flag, int argc, char * const argv[],
int *repeatable, unsigned long *ticks);
+void fixup_cmdtable(cmd_tbl_t *cmdtp, int size);
#endif /* __ASSEMBLY__ */
/*
@@ -179,8 +180,4 @@ int cmd_process(int flag, int argc, char * const argv[],
#define U_BOOT_CMD(_name, _maxargs, _rep, _cmd, _usage, _help) \
U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, NULL)
-#if defined(CONFIG_NEEDS_MANUAL_RELOC)
-void fixup_cmdtable(cmd_tbl_t *cmdtp, int size);
-#endif
-
#endif /* __COMMAND_H */
OpenPOWER on IntegriCloud