diff mbox series

[U-Boot,1/1] common: command: fix typo

Message ID 20181012092304.29684-1-xypron.glpk@gmx.de
State Accepted
Commit 8a3d734b1b7b613f9fd1b66b2e66d19bff4bab9d
Delegated to: Tom Rini
Headers show
Series [U-Boot,1/1] common: command: fix typo | expand

Commit Message

Heinrich Schuchardt Oct. 12, 2018, 9:23 a.m. UTC
%s/CMD_RET_SUCCESX/CMD_RET_SUCCESS/g

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
---
 include/command.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Tom Rini Oct. 20, 2018, 7:11 p.m. UTC | #1
On Fri, Oct 12, 2018 at 11:23:04AM +0200, Heinrich Schuchardt wrote:

> %s/CMD_RET_SUCCESX/CMD_RET_SUCCESS/g
> 
> Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/include/command.h b/include/command.h
index 5b1577f3b4..200c7a5e9f 100644
--- a/include/command.h
+++ b/include/command.h
@@ -67,7 +67,7 @@  extern int cmd_auto_complete(const char *const prompt, char *buf, int *np, int *
  *
  * @cmdtp: Command which caused the error
  * @err: Error code (0 if none, -ve for error, like -EIO)
- * @return 0 (CMD_RET_SUCCESX) if there is not error,
+ * @return 0 (CMD_RET_SUCCESS) if there is not error,
  *	   1 (CMD_RET_FAILURE) if an error is found
  *	   -1 (CMD_RET_USAGE) if 'usage' error is found
  */