diff options
author | Fabio Estevam <festevam@gmail.com> | 2020-10-07 08:09:32 -0300 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2020-11-01 15:53:29 +0100 |
commit | fc4e69f63f96d6f8898864f1a9f9b0a4c0ac426b (patch) | |
tree | 27367f31a98148fd5423a2a09e995601d521b094 | |
parent | 538723e01234a6df0de54e902ca28c6db5b5c599 (diff) |
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>
-rw-r--r-- | arch/arm/mach-imx/mx7ulp/clock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/mx7ulp/clock.c b/arch/arm/mach-imx/mx7ulp/clock.c index 1a504d0b9a7..51aaa5001e7 100644 --- a/arch/arm/mach-imx/mx7ulp/clock.c +++ b/arch/arm/mach-imx/mx7ulp/clock.c @@ -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"); |