mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
MX: MX35 / MX5: uniform clock command with powerpc
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>
This commit is contained in:
parent
6b5acfc121
commit
7acec25948
2 changed files with 4 additions and 4 deletions
|
@ -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",
|
||||
""
|
||||
);
|
||||
|
||||
|
|
|
@ -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",
|
||||
""
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue