mbox series

[GIT,PULL] USB-serial updates for 5.2-rc1

Message ID 20190503153650.GA6170@localhost (mailing list archive)
State New, archived
Headers show
Series [GIT,PULL] USB-serial updates for 5.2-rc1 | expand

Pull-request

https://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git tags/usb-serial-5.2-rc1

Message

Johan Hovold May 3, 2019, 3:36 p.m. UTC
The following changes since commit 79a3aaa7b82e3106be97842dedfd8429248896e6:

  Linux 5.1-rc3 (2019-03-31 14:39:29 -0700)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git tags/usb-serial-5.2-rc1

for you to fetch changes up to 7f6fc50242d11d4fedab9cf6c5e8af368c076ccd:

  USB: serial: f81232: implement break control (2019-05-03 09:19:55 +0200)

----------------------------------------------------------------
USB-serial updates for 5.2-rc1

Here are the USB-serial updates for 5.2-rc1, including:

 - flow-control related fixes for pl2303
 - fix for an initial-termios issue
 - fix for a couple of unthrottle() races
 - fix for f81232 interrupt-handling issues
 - improved f81232 overrun handling
 - support for higher f81232 line speeds
 - support for f81232 break control

Included are also various clean ups.

All but the last four commits have been in linux-next and with no
reported issues.

Signed-off-by: Johan Hovold <johan@kernel.org>

----------------------------------------------------------------
Greg Kroah-Hartman (1):
      USB: serial: io_edgeport: fix up switch fall-through comments

Ji-Ze Hong (Peter Hong) (4):
      USB: serial: f81232: fix interrupt worker not stop
      USB: serial: f81232: clear overrun flag
      USB: serial: f81232: add high baud rate support
      USB: serial: f81232: implement break control

Johan Hovold (17):
      USB: serial: pl2303: fix non-supported xon/xoff
      USB: serial: pl2303: fix tranceiver suspend mode
      USB: serial: digi_acceleport: clean up modem-control handling
      USB: serial: digi_acceleport: clean up set_termios
      USB: serial: fix initial-termios handling
      USB: serial: ark3116: drop redundant init_termios
      USB: serial: cypress_m8: drop unused driver data flag
      USB: serial: cypress_m8: drop unused termios
      USB: serial: cypress_m8: clean up initial-termios handling
      USB: serial: iuu_phoenix: drop bogus initial cflag
      USB: serial: iuu_phoenix: simplify init_termios
      USB: serial: oti6858: simplify init_termios
      USB: serial: spcp8x5: simplify init_termios
      USB: serial: fix unthrottle races
      USB: serial: clean up throttle handling
      USB: serial: drop unnecessary goto
      USB: serial: drop unused iflag macro

 drivers/usb/serial/ark3116.c         |  11 --
 drivers/usb/serial/cypress_m8.c      |  49 ++-------
 drivers/usb/serial/digi_acceleport.c |  41 ++++----
 drivers/usb/serial/f81232.c          | 198 ++++++++++++++++++++++++++++++++---
 drivers/usb/serial/generic.c         |  76 +++++++-------
 drivers/usb/serial/io_edgeport.c     |  37 +++----
 drivers/usb/serial/iuu_phoenix.c     |   4 +-
 drivers/usb/serial/oti6858.c         |   5 +-
 drivers/usb/serial/pl2303.c          |  58 ++++++++--
 drivers/usb/serial/spcp8x5.c         |   5 +-
 drivers/usb/serial/usb-serial.c      |  11 +-
 include/linux/usb/serial.h           |   8 +-
 12 files changed, 324 insertions(+), 179 deletions(-)

Comments

Greg KH May 3, 2019, 4:01 p.m. UTC | #1
On Fri, May 03, 2019 at 05:36:50PM +0200, Johan Hovold wrote:
> The following changes since commit 79a3aaa7b82e3106be97842dedfd8429248896e6:
> 
>   Linux 5.1-rc3 (2019-03-31 14:39:29 -0700)
> 
> are available in the Git repository at:
> 
>   https://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git tags/usb-serial-5.2-rc1

Pulled and pushed out, thanks.

greg k-h