diff options
author | Scott Wood <scottwood@freescale.com> | 2015-03-20 19:28:14 -0700 |
---|---|---|
committer | York Sun <yorksun@freescale.com> | 2015-04-23 08:55:56 -0700 |
commit | 1e52835a89d8ba8a420ab8aaf947994bfe157b34 (patch) | |
tree | 0520b2a478b8aea76738bb77b16a31ab5e539236 /arch/arm/cpu | |
parent | d746fef40653d17a64ff81a8ff57c55d122d8d5e (diff) | |
download | u-boot-imx-1e52835a89d8ba8a420ab8aaf947994bfe157b34.zip u-boot-imx-1e52835a89d8ba8a420ab8aaf947994bfe157b34.tar.gz u-boot-imx-1e52835a89d8ba8a420ab8aaf947994bfe157b34.tar.bz2 |
armv8/fsl-lsch3: Use correct compatible for serial clock fixup
The serial nodes in the fsl-lsch3 device trees have compatible =
"fsl,ns16550", "ns16550a" -- so don't look for "ns16550".
Signed-off-by: Scott Wood <scottwood@freescale.com>
Signed-off-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'arch/arm/cpu')
-rw-r--r-- | arch/arm/cpu/armv8/fsl-lsch3/fdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv8/fsl-lsch3/fdt.c b/arch/arm/cpu/armv8/fsl-lsch3/fdt.c index 7eb9b6a..42c5b58 100644 --- a/arch/arm/cpu/armv8/fsl-lsch3/fdt.c +++ b/arch/arm/cpu/armv8/fsl-lsch3/fdt.c @@ -62,7 +62,7 @@ void ft_cpu_setup(void *blob, bd_t *bd) #endif #ifdef CONFIG_SYS_NS16550 - do_fixup_by_compat_u32(blob, "ns16550", + do_fixup_by_compat_u32(blob, "fsl,ns16550", "clock-frequency", CONFIG_SYS_NS16550_CLK, 1); #endif } |