mbox series

[GIT,PULL] TTY/Serial driver fixes for 5.17-rc2

Message ID YfU9F+OwlK+Rso3T@kroah.com
State New
Headers show
Series [GIT,PULL] TTY/Serial driver fixes for 5.17-rc2 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git tags/tty-5.17-rc2

Message

Greg Kroah-Hartman Jan. 29, 2022, 1:11 p.m. UTC
The following changes since commit e783362eb54cd99b2cac8b3a9aeac942e6f6ac07:

  Linux 5.17-rc1 (2022-01-23 10:12:53 +0200)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git tags/tty-5.17-rc2

for you to fetch changes up to d1ad2721b1eb05d54e81393a7ebc332d4a35c68f:

  kbuild: remove include/linux/cyclades.h from header file check (2022-01-27 08:51:08 +0100)

----------------------------------------------------------------
TTY/Serial driver fixes for 5.17-rc2

Here are some small bug fixes and reverts for reported problems with the
tty core and drivers.  They include:
	- revert the fifo use for the 8250 console mode.  It caused too
	  many regressions and problems, and had a bug in it as well.
	  This is being reworked and should show up in a later -rc1
	  release, but it's not ready for 5.17
	- rpmsg tty race fix
	- restore the cyclades.h uapi header file.  Turns out a compiler
	  test suite used it for some unknown reason.  Bring it back
	  just for the parts that are used by the builder test so they
	  continue to build.  No functionality is restored as no one
	  actually has this hardware anymore, nor is it really tested.
	- stm32 driver fixes
	- n_gsm flow control fixes
	- pl011 driver fix
	- rs485 initialization fix

All of these have been in linux-next this week with no reported
problems.

Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

----------------------------------------------------------------
Arnaud Pouliquen (1):
      tty: rpmsg: Fix race condition releasing tty port

Cameron Williams (1):
      tty: Add support for Brainboxes UC cards.

Greg Kroah-Hartman (2):
      Revert "tty: serial: Use fifo in 8250 console driver"
      kbuild: remove include/linux/cyclades.h from header file check

Jochen Mades (1):
      serial: pl011: Fix incorrect rs485 RTS polarity on set_mctrl

Lukas Wunner (1):
      serial: core: Initialize rs485 RTS polarity already on probe

Maciej W. Rozycki (1):
      tty: Partially revert the removal of the Cyclades public API

Robert Hancock (1):
      serial: 8250: of: Fix mapped region size when using reg-offset property

Valentin Caron (2):
      serial: stm32: prevent TDR register overwrite when sending x_char
      serial: stm32: fix software flow control transfer

daniel.starke@siemens.com (1):
      tty: n_gsm: fix SW flow control encoding/handling

 drivers/tty/n_gsm.c                 |   4 +-
 drivers/tty/rpmsg_tty.c             |  40 ++++++++++-----
 drivers/tty/serial/8250/8250_of.c   |  11 +++-
 drivers/tty/serial/8250/8250_pci.c  | 100 +++++++++++++++++++++++++++++++++++-
 drivers/tty/serial/8250/8250_port.c |  61 +++-------------------
 drivers/tty/serial/amba-pl011.c     |  11 +---
 drivers/tty/serial/serial_core.c    |  34 +++++-------
 drivers/tty/serial/stm32-usart.c    |  14 ++++-
 include/uapi/linux/cyclades.h       |  35 +++++++++++++
 usr/include/Makefile                |   1 +
 10 files changed, 205 insertions(+), 106 deletions(-)
 create mode 100644 include/uapi/linux/cyclades.h

Comments

pr-tracker-bot@kernel.org Jan. 29, 2022, 1:54 p.m. UTC | #1
The pull request you sent on Sat, 29 Jan 2022 14:11:51 +0100:

> git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git tags/tty-5.17-rc2

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/bb37101b36332345a1e1c1f9f2f3bcc8ad7edb65

Thank you!