summaryrefslogtreecommitdiff
path: root/include/command.h
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-08-10 17:49:20 -0400
committerTom Rini <trini@konsulko.com>2022-08-10 17:49:20 -0400
commitcdebee1fd9fa04cc4c972f826bae19b28c253eb0 (patch)
tree97a13d6a54ea8cb825d19cd65d4c9480ffd327dc /include/command.h
parent3dd4e916324efc825a7ee8e412f5cf1ded839021 (diff)
parent468091a4602f78aaa11d41190ae66d8b240e144a (diff)
Merge branch '2022-08-10-assorted-updates'
- An assortment of bugfixes and minor updates
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 44c91f655d4..8917da8b21c 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);