All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
To: linux-serial@vger.kernel.org,
	Greg KH <gregkh@linuxfoundation.org>,
	Jiri Slaby <jirislaby@kernel.org>,
	Karol Gugala <kgugala@antmicro.com>,
	Mateusz Holenko <mholenko@antmicro.com>,
	Gabriel Somlo <gsomlo@gmail.com>, Joel Stanley <joel@jms.id.au>,
	linux-kernel@vger.kernel.org
Cc: "Andy Shevchenko" <andriy.shevchenko@linux.intel.com>,
	"Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
Subject: [PATCH 19/44] serial: liteuart: Use uart_xmit_advance()
Date: Wed, 19 Oct 2022 12:11:26 +0300	[thread overview]
Message-ID: <20221019091151.6692-20-ilpo.jarvinen@linux.intel.com> (raw)
In-Reply-To: <20221019091151.6692-1-ilpo.jarvinen@linux.intel.com>

Take advantage of the new uart_xmit_advance() helper.

Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
---
 drivers/tty/serial/liteuart.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/tty/serial/liteuart.c b/drivers/tty/serial/liteuart.c
index 4c0604325ee9..062812fe1b09 100644
--- a/drivers/tty/serial/liteuart.c
+++ b/drivers/tty/serial/liteuart.c
@@ -136,8 +136,7 @@ static void liteuart_start_tx(struct uart_port *port)
 	} else if (!uart_circ_empty(xmit)) {
 		while (xmit->head != xmit->tail) {
 			ch = xmit->buf[xmit->tail];
-			xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
-			port->icount.tx++;
+			uart_xmit_advance(port, 1);
 			liteuart_putchar(port, ch);
 		}
 	}
-- 
2.30.2


  parent reply	other threads:[~2022-10-19  9:38 UTC|newest]

Thread overview: 84+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-19  9:11 [PATCH 00/44] serial: Convert drivers to use uart_xmit_advance() Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 01/44] serial: dz: Use uart_xmit_advance() Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 02/44] serial: men_z135_uart: " Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 03/44] serial: msm: " Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 04/44] serial: pch_uart: " Ilpo Järvinen
2022-10-19 11:11   ` Andy Shevchenko
2022-10-19  9:11 ` [PATCH 05/44] serial: sc16is7xx: " Ilpo Järvinen
2022-10-19 11:11   ` Andy Shevchenko
2022-10-19  9:11 ` [PATCH 06/44] serial: 8250_bcm7271: " Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 07/44] serial: 8250: " Ilpo Järvinen
2022-10-19 11:12   ` Andy Shevchenko
2022-10-19  9:11 ` [PATCH 08/44] serial: pl011: " Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 09/44] serial: ar933x: " Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 10/44] serial: arc: " Ilpo Järvinen
2022-10-19  9:11   ` Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 11/44] serial: atmel: " Ilpo Järvinen
2022-10-19  9:11   ` Ilpo Järvinen
2022-10-20  9:01   ` Claudiu.Beznea
2022-10-20  9:01     ` Claudiu.Beznea
2022-10-20 13:06     ` Richard Genoud
2022-10-20 13:06       ` Richard Genoud
2022-10-19  9:11 ` [PATCH 12/44] serial: clps711x: " Ilpo Järvinen
2022-10-19  9:11   ` Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 13/44] serial: cpm_uart: " Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 14/44] serial: digicolor: " Ilpo Järvinen
2022-10-19  9:11   ` Ilpo Järvinen
2022-10-19 11:30   ` Baruch Siach
2022-10-19 11:30     ` Baruch Siach
2022-10-19  9:11 ` [PATCH 15/44] serial: linflexuart: " Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 16/44] serial: fsl_lpuart: " Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 17/44] serial: imx: " Ilpo Järvinen
2022-10-19  9:11   ` Ilpo Järvinen
2022-10-19 13:14   ` Uwe Kleine-König
2022-10-19 13:14     ` Uwe Kleine-König
2022-10-19  9:11 ` [PATCH 18/44] serial: ip22zilog: " Ilpo Järvinen
2022-10-19  9:11 ` Ilpo Järvinen [this message]
2022-10-19 14:59   ` [PATCH 19/44] serial: liteuart: " Gabriel L. Somlo
2022-10-19  9:11 ` [PATCH 20/44] serial: max3100: " Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 21/44] serial: max310x: " Ilpo Järvinen
2022-10-19 11:10   ` Andy Shevchenko
2022-10-19  9:11 ` [PATCH 22/44] serial: meson: " Ilpo Järvinen
2022-10-19  9:11   ` Ilpo Järvinen
2022-10-19  9:11   ` Ilpo Järvinen
2022-10-19  9:36   ` Neil Armstrong
2022-10-19  9:36     ` Neil Armstrong
2022-10-19  9:36     ` Neil Armstrong
2022-10-19 20:42   ` Martin Blumenstingl
2022-10-19 20:42     ` Martin Blumenstingl
2022-10-19 20:42     ` Martin Blumenstingl
2022-10-19  9:11 ` [PATCH 23/44] serial: milbeaut_usio: " Ilpo Järvinen
2022-10-19  9:11   ` Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 24/44] serial: mvebu-uart: " Ilpo Järvinen
2022-10-20 20:12   ` Pali Rohár
2022-10-19  9:11 ` [PATCH 25/44] serial: pic32: " Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 26/44] serial: pmac_zilog: " Ilpo Järvinen
2022-10-19  9:11   ` Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 27/44] serial: rda: " Ilpo Järvinen
2022-10-19  9:11   ` Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 28/44] serial: samsung_tty: " Ilpo Järvinen
2022-10-19  9:11   ` Ilpo Järvinen
2022-10-21 11:48   ` Sam Protsenko
2022-10-21 11:48     ` Sam Protsenko
2022-10-19  9:11 ` [PATCH 29/44] serial: sb1250-duart: " Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 30/44] serial: sccnxp: " Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 31/44] serial: tegra: " Ilpo Järvinen
2022-10-19 17:05   ` Thierry Reding
2022-10-19  9:11 ` [PATCH 32/44] serial: sh-sci: " Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 33/44] serial: sprd: " Ilpo Järvinen
2022-10-19 10:49   ` Baolin Wang
2022-10-19  9:11 ` [PATCH 34/44] serial: stm32: " Ilpo Järvinen
2022-10-19  9:11   ` Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 35/44] serial: sunhv: " Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 36/44] serial: sunplus-uart: " Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 37/44] serial: sunsab: " Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 38/44] serial: sunsu: " Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 39/44] serial: sunzilog: " Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 40/44] serial: timbuart: " Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 41/44] serial: uartlite: " Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 42/44] serial: ucc_uart: " Ilpo Järvinen
2022-10-19  9:11   ` Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 43/44] serial: xuartps: " Ilpo Järvinen
2022-10-19  9:11   ` Ilpo Järvinen
2022-10-19  9:11 ` [PATCH 44/44] serial: zs: " Ilpo Järvinen
2022-10-19 10:55 ` [PATCH 00/44] serial: Convert drivers to use uart_xmit_advance() Jiri Slaby

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221019091151.6692-20-ilpo.jarvinen@linux.intel.com \
    --to=ilpo.jarvinen@linux.intel.com \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=gsomlo@gmail.com \
    --cc=jirislaby@kernel.org \
    --cc=joel@jms.id.au \
    --cc=kgugala@antmicro.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-serial@vger.kernel.org \
    --cc=mholenko@antmicro.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.