diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2008-07-09 13:23:05 -0400 |
---|---|---|
committer | Andrew Fleming-AFLEMING <afleming@freescale.com> | 2008-07-14 18:56:51 -0500 |
commit | 71074abbe0c76429577aff58aeff0a24ad210b23 (patch) | |
tree | 4652ac4855c0b07ca8d4de2f7fcec061898af6f7 /cpu/mpc85xx | |
parent | 24ef76f320fbadf074105229826514db140f939f (diff) | |
download | u-boot-imx-71074abbe0c76429577aff58aeff0a24ad210b23.zip u-boot-imx-71074abbe0c76429577aff58aeff0a24ad210b23.tar.gz u-boot-imx-71074abbe0c76429577aff58aeff0a24ad210b23.tar.bz2 |
8xxx-fdt: set ns16550 clock from CFG_NS16550_CLK, not bi_busfreq
Some boards that have external 16550 UARTs don't have a direct
tie between bi_busfreq and the clock used for the UARTs. Boards
that do have such a tie should set CFG_NS16550_CLK to be
get_bus_freq(0) -- which most of them do already.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Acked-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'cpu/mpc85xx')
-rw-r--r-- | cpu/mpc85xx/fdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/mpc85xx/fdt.c b/cpu/mpc85xx/fdt.c index c8d2c6a..c159934 100644 --- a/cpu/mpc85xx/fdt.c +++ b/cpu/mpc85xx/fdt.c @@ -229,7 +229,7 @@ void ft_cpu_setup(void *blob, bd_t *bd) #ifdef CFG_NS16550 do_fixup_by_compat_u32(blob, "ns16550", - "clock-frequency", bd->bi_busfreq, 1); + "clock-frequency", CFG_NS16550_CLK, 1); #endif #ifdef CONFIG_CPM2 |