From patchwork Mon Jan 27 06:30:06 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luka Kovacic X-Patchwork-Id: 240261 List-Id: U-Boot discussion From: luka.kovacic at sartura.hr (luka.kovacic at sartura.hr) Date: Mon, 27 Jan 2020 07:30:06 +0100 Subject: [PATCH 1/2 v1] cmd: doc: Update command return values In-Reply-To: <20200123211204.GC26536@bill-the-cat> References: <20200123211204.GC26536@bill-the-cat> Message-ID: <20200127063006.27936-1-luka.kovacic@sartura.hr> From: Luka Kovacic Update the command return values to CMD_RET_SUCCESS and CMD_RET_FAILURE in commands documentation. Signed-off-by: Luka Kovacic --- doc/README.commands | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/README.commands b/doc/README.commands index e03eb44187..4e9e8098fa 100644 --- a/doc/README.commands +++ b/doc/README.commands @@ -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.