From: Bin Meng Date: Mon, 20 Oct 2014 08:14:53 +0000 (+0800) Subject: common/cmd_io.c: Fix incorrect help for iod/iow X-Git-Tag: v2015.01-rc1~101 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d641819cf8e263723d1f630a6ba5ed38863a0688;p=oweals%2Fu-boot.git common/cmd_io.c: Fix incorrect help for iod/iow Signed-off-by: Bin Meng Acked-by: Simon Glass --- 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");