mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-30 00:21:06 +00:00
mx7ulp: clock: Align the PLL_USB frequency
The command 'clocks' shows the following output: => clocks PLL_A7_SPLL 528 MHz PLL_A7_APLL 529 MHz PLL_USB 0 MHz Add some extra spaces so that the PLL_USB information gets aligned with the previous reported frequencies. Signed-off-by: Fabio Estevam <festevam@gmail.com>
This commit is contained in:
parent
538723e012
commit
fc4e69f63f
1 changed files with 1 additions and 1 deletions
|
@ -342,7 +342,7 @@ int do_mx7_showclocks(struct cmd_tbl *cmdtp, int flag, int argc,
|
|||
printf("PLL_A7_APLL %8d MHz\n", freq / 1000000);
|
||||
|
||||
freq = decode_pll(PLL_USB);
|
||||
printf("PLL_USB %8d MHz\n", freq / 1000000);
|
||||
printf("PLL_USB %8d MHz\n", freq / 1000000);
|
||||
|
||||
printf("\n");
|
||||
|
||||
|
|
Loading…
Reference in a new issue