mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 22:20:45 +00:00
imx8m: clock: Fix oscillator values
OSC_27M_CLK should return 27MHz and OSC_32K_CLK should return 32768Hz to reflect the reality. This also keeps the values in sync with the Linux clock tree. Signed-off-by: Fabio Estevam <festevam@gmail.com>
This commit is contained in:
parent
f7e475db40
commit
d4a0c09892
1 changed files with 2 additions and 2 deletions
|
@ -250,9 +250,9 @@ static u32 get_root_src_clk(enum clk_root_src root_src)
|
|||
case OSC_25M_CLK:
|
||||
return 25000000;
|
||||
case OSC_27M_CLK:
|
||||
return 25000000;
|
||||
return 27000000;
|
||||
case OSC_32K_CLK:
|
||||
return 32000;
|
||||
return 32768;
|
||||
case ARM_PLL_CLK:
|
||||
return decode_frac_pll(root_src);
|
||||
case SYSTEM_PLL1_800M_CLK:
|
||||
|
|
Loading…
Reference in a new issue