2024-06-16 10:52:03

by Greg Kroah-Hartman

[permalink] [raw]
Subject: [GIT PULL] TTY / Serial driver fixes for 6.10-rc4

The following changes since commit c3f38fa61af77b49866b006939479069cd451173:

Linux 6.10-rc2 (2024-06-02 15:44:56 -0700)

are available in the Git repository at:

ssh://[email protected]/pub/scm/linux/kernel/git/gregkh/tty.git tags/tty-6.10-rc4

for you to fetch changes up to ae01e52da244af5d650378ada1bfd2d946dc1b45:

serial: drop debugging WARN_ON_ONCE() from uart_write() (2024-06-04 14:10:43 +0200)

----------------------------------------------------------------
TTY/Serial driver fixes for 6.10-rc4

Here are some small tty and serial driver fixes that resolve som
reported problems. Included in here are:
- n_tty lookahead buffer bugfix
- WARN_ON() removal where it was not needed
- 8250_dw driver bugfixes
- 8250_pxa bugfix
- sc16is7xx Kconfig fixes for reported build issues

All of these have been in linux-next for over a week with no reported
problems.

Signed-off-by: Greg Kroah-Hartman <[email protected]>

----------------------------------------------------------------
Andy Shevchenko (2):
serial: 8250_dw: Don't use struct dw8250_data outside of 8250_dw
serial: 8250_dw: Revert "Move definitions to the shared header"

Doug Brown (1):
serial: 8250_pxa: Configure tx_loadsz to match FIFO IRQ level

Douglas Anderson (1):
serial: port: Don't block system suspend even if bytes are left to xmit

Hugo Villeneuve (2):
serial: sc16is7xx: rename Kconfig CONFIG_SERIAL_SC16IS7XX_CORE
serial: sc16is7xx: re-add Kconfig SPI or I2C dependency

Ilpo J?rvinen (1):
tty: n_tty: Fix buffer offsets when lookahead is used

Tetsuo Handa (1):
serial: drop debugging WARN_ON_ONCE() from uart_write()

drivers/tty/n_tty.c | 22 ++++++++++++++++------
drivers/tty/serial/8250/8250_dw.c | 36 ++++++++++++++++++++++++++++++++++--
drivers/tty/serial/8250/8250_dwlib.c | 3 +--
drivers/tty/serial/8250/8250_dwlib.h | 33 +--------------------------------
drivers/tty/serial/8250/8250_pxa.c | 1 +
drivers/tty/serial/Kconfig | 3 ++-
drivers/tty/serial/Makefile | 2 +-
drivers/tty/serial/serial_core.c | 2 +-
drivers/tty/serial/serial_port.c | 7 +++++++
9 files changed, 64 insertions(+), 45 deletions(-)