mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 16:52:14 +02:00
cmd: gpio: Correct do_gpio() return value
Use the correct return value in function do_gpio() and update commands documentation with the return values from command_ret_t enum. CMD_RET_SUCCESS is returned on command success and CMD_RET_FAILURE is returned on command failure. The command was returning the pin value, which caused confusion when debugging (#define DEBUG). Signed-off-by: Luka Kovacic <luka.kovacic@sartura.hr> Tested-by: Robert Marko <robert.marko@sartura.hr>
This commit is contained in:
@@ -83,9 +83,9 @@ argv: Arguments.
|
||||
|
||||
Allowable return value are:
|
||||
|
||||
CMD_SUCCESS The command was successfully executed.
|
||||
CMD_RET_SUCCESS The command was successfully executed.
|
||||
|
||||
CMD_FAILURE The command failed.
|
||||
CMD_RET_FAILURE The command failed.
|
||||
|
||||
CMD_RET_USAGE The command was called with invalid parameters. This value
|
||||
leads to the display of the usage string.
|
||||
|
Reference in New Issue
Block a user