Re: [PATCH v3 2/7] serial: txx9: Drop usage of uart_match_port()

From: Atsushi Nemoto

Date: Sat Aug 15 2026 - 03:44:33 EST


On Fri, 14 Aug 2026 11:19:28 +0200, Uwe Kleine-König (The Capable Hub) <u.kleine-koenig@xxxxxxxxxxxx> wrote:
> - if (uart_match_port(uart, port)) {
> + /*
> + * serial_txx9_register_port() is only called from
> + * pciserial_txx9_init_one(). So .iotype is UPIO_PORT and
> + * comparing .iobase serves to distinguish ports.
> + */
> + if (uart->iobase == port->iobase) {

Thank you for adding this comment.

Reviewed-by: Atsushi Nemoto <anemo@xxxxxxxxxxxxx>

---
Atsushi Nemoto