[U-Boot] [PATCH] common/cmd_io.c: Fix incorrect help for iod/iow
Bin Meng
bmeng.cn at gmail.com
Mon Oct 20 10:14:53 CEST 2014
Signed-off-by: Bin Meng <bmeng.cn at gmail.com>
---
common/cmd_io.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/common/cmd_io.c b/common/cmd_io.c
index eefac36..c59148f 100644
--- a/common/cmd_io.c
+++ b/common/cmd_io.c
@@ -70,8 +70,8 @@ int do_io_iow(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
/**************************************************/
U_BOOT_CMD(iod, 2, 0, do_io_iod,
- "IO space display", "[.b, .w, .l] address [# of objects]");
+ "IO space display", "[.b, .w, .l] address");
U_BOOT_CMD(iow, 3, 0, do_io_iow,
- "IO space modify (auto-incrementing address)",
- "[.b, .w, .l] address");
+ "IO space modify",
+ "[.b, .w, .l] address value");
--
1.8.2.1
More information about the U-Boot
mailing list