mirror of
https://github.com/u-boot/u-boot.git
synced 2025-01-16 07:43:48 +08:00
Blackfin: respect CONFIG_CLKIN_HALF
As pointed out by Ivan Koryakovskiy, the initialization code was not actually respecting the CONFIG_CLKIN_HALF option when configuring the PLL_CTL register. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
dc2bfb0b58
commit
4f6a313240
@ -158,7 +158,7 @@ static inline void serial_putc(char c)
|
||||
#endif
|
||||
|
||||
#ifndef CONFIG_PLL_CTL_VAL
|
||||
# define CONFIG_PLL_CTL_VAL (SPORT_HYST | (CONFIG_VCO_MULT << 9))
|
||||
# define CONFIG_PLL_CTL_VAL (SPORT_HYST | (CONFIG_VCO_MULT << 9) | CONFIG_CLKIN_HALF)
|
||||
#endif
|
||||
|
||||
#ifndef CONFIG_EBIU_RSTCTL_VAL
|
||||
|
Loading…
Reference in New Issue
Block a user