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>
 }
 
 U_BOOT_CMD(
-       clockinfo,      CONFIG_SYS_MAXARGS,     1,      do_mx35_showclocks,
-       "display clocks\n",
+       clocks, CONFIG_SYS_MAXARGS, 1, do_mx35_showclocks,
+       "display clocks",
        ""
 );
 
 
 /***************************************************/
 
 U_BOOT_CMD(
-       clockinfo,      CONFIG_SYS_MAXARGS,     1,      do_mx5_showclocks,
-       "display clocks\n",
+       clocks, CONFIG_SYS_MAXARGS, 1, do_mx5_showclocks,
+       "display clocks",
        ""
 );