diff options
author | Simon Glass <sjg@chromium.org> | 2020-12-22 19:30:19 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2021-01-05 12:24:40 -0700 |
commit | 2d6bf754ced8fc66cb945d026b66865da4fede85 (patch) | |
tree | 8efe630192c75c1c64adb9829f1a37f7f23afc41 /arch/arm/mach-keystone/init.c | |
parent | d30c7209dfb4c6e4f38f8b42354e44885b53f301 (diff) | |
download | u-boot-2d6bf754ced8fc66cb945d026b66865da4fede85.tar.gz u-boot-2d6bf754ced8fc66cb945d026b66865da4fede85.tar.bz2 u-boot-2d6bf754ced8fc66cb945d026b66865da4fede85.zip |
serial: Rename ns16550 functions to lower case
Lower case should be used for function names. Update this driver and its
callers accordingly.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Diffstat (limited to 'arch/arm/mach-keystone/init.c')
-rw-r--r-- | arch/arm/mach-keystone/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-keystone/init.c b/arch/arm/mach-keystone/init.c index f4edaaaaac..4950f14655 100644 --- a/arch/arm/mach-keystone/init.c +++ b/arch/arm/mach-keystone/init.c @@ -185,7 +185,7 @@ int arch_cpu_init(void) * driver doesn't handle this. */ #ifndef CONFIG_DM_SERIAL - NS16550_init((struct ns16550 *)(CONFIG_SYS_NS16550_COM2), + ns16550_init((struct ns16550 *)(CONFIG_SYS_NS16550_COM2), CONFIG_SYS_NS16550_CLK / 16 / CONFIG_BAUDRATE); #endif |