mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-17 22:28:17 +01:00
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>
This commit is contained in:
parent
29784d62ed
commit
8b8accb8bf
@ -229,10 +229,10 @@ enum command_ret_t {
|
|||||||
* is left unchanged.
|
* is left unchanged.
|
||||||
* @param ticks If ticks is not null, this function set it to the
|
* @param ticks If ticks is not null, this function set it to the
|
||||||
* number of ticks the command took to complete.
|
* 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,
|
enum command_ret_t cmd_process(int flag, int argc, char *const argv[],
|
||||||
unsigned long *ticks);
|
int *repeatable, unsigned long *ticks);
|
||||||
|
|
||||||
void fixup_cmdtable(struct cmd_tbl *cmdtp, int size);
|
void fixup_cmdtable(struct cmd_tbl *cmdtp, int size);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user