Linux Documentation
 help / color / mirror / Atom feed
From: "Uwe Kleine-König (The Capable Hub)" <u.kleine-koenig@baylibre.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Jiri Slaby <jirislaby@kernel.org>
Cc: "Andy Shevchenko" <andriy.shevchenko@linux.intel.com>,
	"Atsushi Nemoto" <anemo@mba.ocn.ne.jp>,
	"John Ogness" <john.ogness@linutronix.de>,
	linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org,
	"Jonathan Corbet" <corbet@lwn.net>,
	"Shuah Khan" <skhan@linuxfoundation.org>,
	"Randy Dunlap" <rdunlap@infradead.org>,
	"Crescent Hsieh" <crescentcy.hsieh@moxa.com>,
	"Fushuai Wang" <wangfushuai@baidu.com>,
	"Hugo Villeneuve" <hvilleneuve@dimonoff.com>,
	"Karl Mehltretter" <kmehltretter@gmail.com>,
	linux-doc@vger.kernel.org,
	"Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>,
	"Abinash Singh" <abinashsinghlalotra@gmail.com>,
	"Rahul Bukte" <rahul.bukte@sony.com>,
	"Kees Cook" <kees@kernel.org>, "Lukas Wunner" <lukas@wunner.de>,
	"Gerhard Engleder" <eg@keba.com>,
	"Rong Zhang" <rongrong@oss.cipunited.com>,
	"Binbin Zhou" <zhoubinbin@loongson.cn>,
	"Haowei Zheng" <zhenghaowei@loongson.cn>,
	"Russell King" <linux@armlinux.org.uk>,
	"Geert Uytterhoeven" <geert@linux-m68k.org>
Subject: [PATCH v3 0/7] serial: Some yak shaving
Date: Fri, 14 Aug 2026 11:19:26 +0200	[thread overview]
Message-ID: <cover.1786697789.git.u.kleine-koenig@baylibre.com> (raw)

Hello,

v2 of this series can be found at
https://lore.kernel.org/linux-serial/cover.1785832297.git.u.kleine-koenig@baylibre.com
. Changes since then:

 - Drop "serial: txx9: Simplify knowing that .iotype is always
   UPIO_PORT" as the assumption that .iotype is always UPIO_PORT proved
   to be wrong. Thanks to Atsushi Nemoto and Geert Uytterhoeven for
   finding and proving that.
 - Reworked commit log of "serial: txx9: Drop usage of
   uart_match_port()" and add a code comment to justify the comparison.
 - Fix a build issue in "serial: 8250: hub6: Add cleanup code"
 - Added tags received in v2. Andy liked the v2 series in reply to the
   cover letter. I applied his Ack to all patches but "serial: txx9:
   Drop usage of uart_match_port()" as this changed. I would expect he
   agrees to this patch, too, but I'm conservative here.
 - (trivially) rebase to yesterday's next
 - Drop Alan Cox from Cc:, fix email address for Russell King

Best regards
Uwe

Uwe Kleine-König (The Capable Hub) (7):
  serial: txx9: Drop noop probe function and dangerous remove callback
  serial: txx9: Drop usage of uart_match_port()
  serial: 8250: Make uart_match_port() a 8250 specific function
  serial: 8250: Simplify serial8250_match_port()
  serial: 8250: Fix corner case for port matching
  serial: 8250: hub6: Add cleanup code
  serial: 8250: pnp: Annotate init and exit functions for conditional
    discarding

 Documentation/driver-api/serial/driver.rst |  2 +-
 drivers/tty/serial/8250/8250.h             | 10 +++-
 drivers/tty/serial/8250/8250_core.c        | 25 ++++++++-
 drivers/tty/serial/8250/8250_hub6.c        | 11 ++--
 drivers/tty/serial/8250/8250_platform.c    |  9 +++-
 drivers/tty/serial/8250/8250_pnp.c         |  4 +-
 drivers/tty/serial/8250/Kconfig            |  4 +-
 drivers/tty/serial/8250/Makefile           |  2 +-
 drivers/tty/serial/serial_core.c           | 27 ----------
 drivers/tty/serial/serial_txx9.c           | 62 ++++------------------
 include/linux/serial_core.h                |  2 -
 11 files changed, 61 insertions(+), 97 deletions(-)


base-commit: 2697ef8943c9985c14708a6429e21812693857b2
-- 
2.55.0.11.g153666a7d9bb


             reply	other threads:[~2026-08-14  9:19 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-14  9:19 Uwe Kleine-König (The Capable Hub) [this message]
2026-08-14  9:19 ` [PATCH v3 3/7] serial: 8250: Make uart_match_port() a 8250 specific function Uwe Kleine-König (The Capable Hub)

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=cover.1786697789.git.u.kleine-koenig@baylibre.com \
    --to=u.kleine-koenig@baylibre.com \
    --cc=abinashsinghlalotra@gmail.com \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=anemo@mba.ocn.ne.jp \
    --cc=corbet@lwn.net \
    --cc=crescentcy.hsieh@moxa.com \
    --cc=eg@keba.com \
    --cc=geert@linux-m68k.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=hvilleneuve@dimonoff.com \
    --cc=ilpo.jarvinen@linux.intel.com \
    --cc=jirislaby@kernel.org \
    --cc=john.ogness@linutronix.de \
    --cc=kees@kernel.org \
    --cc=kmehltretter@gmail.com \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-serial@vger.kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=lukas@wunner.de \
    --cc=rahul.bukte@sony.com \
    --cc=rdunlap@infradead.org \
    --cc=rongrong@oss.cipunited.com \
    --cc=skhan@linuxfoundation.org \
    --cc=wangfushuai@baidu.com \
    --cc=zhenghaowei@loongson.cn \
    --cc=zhoubinbin@loongson.cn \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox