From: Jiri Slaby Date: Tue, 27 Sep 2022 11:18:16 +0000 (+0200) Subject: tty: serial: extend lqasc_tx_ready() to lqasc_console_putchar() X-Git-Tag: v6.1-rc1~116^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d8544c9c7cf77100be9340c61a9e3e88fe4bb12c;p=thirdparty%2Fkernel%2Flinux.git tty: serial: extend lqasc_tx_ready() to lqasc_console_putchar() There is one more place where lqasc_tx_ready() can be used now: lqasc_console_putchar(). So replace the open-coded variant by the helper. Suggested-by: Ilpo Järvinen Signed-off-by: Jiri Slaby Reviewed-by: Ilpo Järvinen Link: https://lore.kernel.org/r/20220927111819.18516-1-jslaby@suse.cz Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/lantiq.c b/drivers/tty/serial/lantiq.c index 6da1b7496c6c4..ba9739af30ed0 100644 --- a/drivers/tty/serial/lantiq.c +++ b/drivers/tty/serial/lantiq.c @@ -606,15 +606,12 @@ static const struct uart_ops lqasc_pops = { static void lqasc_console_putchar(struct uart_port *port, unsigned char ch) { - int fifofree; - if (!port->membase) return; - do { - fifofree = (__raw_readl(port->membase + LTQ_ASC_FSTAT) - & ASCFSTAT_TXFREEMASK) >> ASCFSTAT_TXFREEOFF; - } while (fifofree == 0); + while (!lqasc_tx_ready(port)) + ; + writeb(ch, port->membase + LTQ_ASC_TBUF); }