summaryrefslogtreecommitdiff
path: root/board/esd/tasreg/tasreg.c
diff options
context:
space:
mode:
authorPeter Tyser <ptyser@xes-inc.com>2009-04-18 22:34:03 -0500
committerWolfgang Denk <wd@denx.de>2009-06-12 20:39:46 +0200
commit0f89c54be92773b23d66ac401ba6acb6144100c3 (patch)
tree60f51c10ce10d8525fd635a1f99e76707221f4d0 /board/esd/tasreg/tasreg.c
parentd48eb5131d287f52bb85b4c58c8680a2e8e3b641 (diff)
i2c: Update references to individual i2c commands
The individual i2c commands imd, imm, inm, imw, icrc32, iprobe, iloop, and isdram are no longer available so all references to them have been updated to the new form of "i2c <cmd>". Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Diffstat (limited to 'board/esd/tasreg/tasreg.c')
-rw-r--r--board/esd/tasreg/tasreg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/esd/tasreg/tasreg.c b/board/esd/tasreg/tasreg.c
index 760c71d26..9602ee59f 100644
--- a/board/esd/tasreg/tasreg.c
+++ b/board/esd/tasreg/tasreg.c
@@ -231,7 +231,7 @@ int do_iploop(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
addr = simple_strtol (argv[1], NULL, 16);
- printf("iprobe looping on addr 0x%lx (cntrl-c aborts)...\n", addr);
+ printf("i2c probe looping on addr 0x%lx (cntrl-c aborts)...\n", addr);
for (;;) {
i2c_probe(addr);
@@ -249,7 +249,7 @@ int do_iploop(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
}
U_BOOT_CMD(
iploop, 2, 1, do_iploop,
- "iprobe loop <addr>",
+ "i2c probe loop <addr>",
NULL
);