arm: juno: Fix UART clock rate
authorAndre Przywara <andre.przywara@arm.com>
Mon, 27 Apr 2020 18:18:00 +0000 (19:18 +0100)
committerTom Rini <trini@konsulko.com>
Thu, 7 May 2020 13:01:42 +0000 (09:01 -0400)
The UART base clock rate was typo-ed in the header file, probably because
the reference (the Linux .dts) was also wrong[1].

Fix the number to make the baud rate more correct.

Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
[1] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=39a1a8941b2
Reviewed-by: Simon Glass <sjg@chromium.org>
include/configs/vexpress_aemv8a.h

index 6f8176061287de13a12367ae4273537edd84760a..3c85c93a5c6736e4d0e6b7b2e32587f7039eda9b 100644 (file)
 
 /* PL011 Serial Configuration */
 #ifdef CONFIG_TARGET_VEXPRESS64_JUNO
-#define CONFIG_PL011_CLOCK             7273800
+#define CONFIG_PL011_CLOCK             7372800
 #else
 #define CONFIG_PL011_CLOCK             24000000
 #endif