summaryrefslogtreecommitdiff
path: root/include/command.h
diff options
context:
space:
mode:
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2022-08-01 15:17:49 +0200
committerTom Rini <trini@konsulko.com>2022-08-10 13:38:30 -0400
commit8b8accb8bf2a5d6dc02b801281dac19214b85b84 (patch)
tree3742af533c6b7570c1ec8a6f79bb1845dab0f566 /include/command.h
parent29784d62eded89332254307bdb63ad8a7d8249d2 (diff)
downloadu-boot-8b8accb8bf2a5d6dc02b801281dac19214b85b84.tar.gz
cmd: inconsistent return type of command_process()
The declarations in the header and in the implementation must match. Reported-by: Sergei Antonov <saproj@gmail.com> Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/command.h')
-rw-r--r--include/command.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/command.h b/include/command.h
index 44c91f655d..8917da8b21 100644
--- a/include/command.h
+++ b/include/command.h
@@ -229,10 +229,10 @@ enum command_ret_t {
* is left unchanged.
* @param ticks If ticks is not null, this function set it to the
* number of ticks the command took to complete.
- * Return: 0 if the command succeeded, 1 if it failed
+ * Return: 0 if command succeeded, else non-zero (CMD_RET_...)
*/
-int cmd_process(int flag, int argc, char *const argv[], int *repeatable,
- unsigned long *ticks);
+enum command_ret_t cmd_process(int flag, int argc, char *const argv[],
+ int *repeatable, unsigned long *ticks);
void fixup_cmdtable(struct cmd_tbl *cmdtp, int size);