MX: MX35 / MX5: uniform clock command with powerpc
authorStefano Babic <sbabic@denx.de>
Wed, 17 Aug 2011 15:52:40 +0000 (17:52 +0200)
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>
Sun, 4 Sep 2011 09:36:11 +0000 (11:36 +0200)
There was already a command to show the processor clocks
for PowerPC (clocks). For i.MX, the "clockinfo" command
was introduce. The patch sets the same command name used on
PowerPC.
A nasty and not needed newline is also dropped in the help for
the command.

Signed-off-by: Stefano Babic <sbabic@denx.de>
arch/arm/cpu/arm1136/mx35/generic.c
arch/arm/cpu/armv7/mx5/clock.c

index 1b4ab75..fcfaba5 100644 (file)
@@ -417,8 +417,8 @@ int do_mx35_showclocks(cmd_tbl_t *cmdtp,
 }
 
 U_BOOT_CMD(
-       clockinfo,      CONFIG_SYS_MAXARGS,     1,      do_mx35_showclocks,
-       "display clocks\n",
+       clocks, CONFIG_SYS_MAXARGS, 1, do_mx35_showclocks,
+       "display clocks",
        ""
 );
 
index 0b04a88..00610a0 100644 (file)
@@ -288,7 +288,7 @@ int do_mx5_showclocks(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
 /***************************************************/
 
 U_BOOT_CMD(
-       clockinfo,      CONFIG_SYS_MAXARGS,     1,      do_mx5_showclocks,
-       "display clocks\n",
+       clocks, CONFIG_SYS_MAXARGS, 1, do_mx5_showclocks,
+       "display clocks",
        ""
 );