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>
This commit is contained in:
@@ -290,7 +290,7 @@ int arch_cpu_init(void)
|
||||
board_gpio_init();
|
||||
|
||||
#if !CONFIG_IS_ENABLED(DM_SERIAL)
|
||||
NS16550_init((struct ns16550 *)(CONFIG_SYS_NS16550_COM1),
|
||||
ns16550_init((struct ns16550 *)(CONFIG_SYS_NS16550_COM1),
|
||||
CONFIG_SYS_NS16550_CLK / 16 / CONFIG_BAUDRATE);
|
||||
#endif
|
||||
/*
|
||||
|
||||
@@ -27,9 +27,9 @@ void puts(const char *str)
|
||||
void putc(char c)
|
||||
{
|
||||
if (c == '\n')
|
||||
NS16550_putc((struct ns16550 *)(CONFIG_SYS_NS16550_COM1), '\r');
|
||||
ns16550_putc((struct ns16550 *)(CONFIG_SYS_NS16550_COM1), '\r');
|
||||
|
||||
NS16550_putc((struct ns16550 *)(CONFIG_SYS_NS16550_COM1), c);
|
||||
ns16550_putc((struct ns16550 *)(CONFIG_SYS_NS16550_COM1), c);
|
||||
}
|
||||
#endif /* CONFIG_SPL_LIBCOMMON_SUPPORT */
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user