From d641819cf8e263723d1f630a6ba5ed38863a0688 Mon Sep 17 00:00:00 2001 From: Bin Meng Date: Mon, 20 Oct 2014 16:14:53 +0800 Subject: common/cmd_io.c: Fix incorrect help for iod/iow Signed-off-by: Bin Meng Acked-by: Simon Glass --- common/cmd_io.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'common') diff --git a/common/cmd_io.c b/common/cmd_io.c index eefac36f87..c59148f413 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"); -- cgit v1.2.1