linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/69] mxser: cleanup
@ 2021-06-18  6:14 Jiri Slaby
  2021-06-18  6:14 ` [PATCH 01/70] mxser: drop ISA support Jiri Slaby
                   ` (70 more replies)
  0 siblings, 71 replies; 72+ messages in thread
From: Jiri Slaby @ 2021-06-18  6:14 UTC (permalink / raw)
  To: gregkh; +Cc: linux-serial, linux-kernel, Jiri Slaby

I was given a few cards from MOXA (thanks a lot). So I cleaned up the
driver and can continue maintaining it.

A long term goal is to convert the driver to serial_core.

Jiri Slaby (70):
  mxser: drop ISA support
  mxser: renumber mxser_cards
  mxser: remove info printout from init
  mxser: integrate mxser.h into .c
  mxser: cleanup Gpci_uart_info struct
  mxser: rename CheckIsMoxaMust to mxser_get_must_hwid
  mxser: rename mxser_board::chip_flag to must_hwid
  mxser: introduce enum mxser_must_hwid
  mxser: drop constant board::uart_type
  mxser: move max_baud from port to board
  mxser: remove nonsense from ISR
  mxser: cleanup LSR handling in mxser_receive_chars
  mxser: extract port ISR
  mxser: simplify mxser_interrupt and drop mxser_board::vector_mask
  mxser: extract mxser_receive_chars_new
  mxser: extract mxser_receive_chars_old
  mxser: remove else from LSR bits checks
  mxser: correct types for uart variables
  mxser: make xmit ring buffer variables unsigned
  mxser: drop UART_MCR_AFE and UART_LSR_SPECIAL defines
  mxser: drop unused MOXA_DIAGNOSE macro
  mxser: remove MOXA_GET_MAJOR deprecated ioctl
  mxser: remove MOXA_SET_BAUD_METHOD ioctl
  mxser: remove MOXA_ASPP_MON and friends
  mxser: remove MOXA_ASPP_LSTATUS ioctl
  mxser: remove MOXA_CHKPORTENABLE ioctl
  mxser: remove MOXA_GETDATACOUNT ioctl
  mxser: remove MOXA_GETMSTATUS ioctl
  mxser: remove MOXA_ASPP_OQUEUE ioctl
  mxser: remove MOXA_HighSpeedOn ioctl
  mxser: remove cnt from mxser_receive_chars
  mxser: don't allocate MXSER_PORTS + 1
  mxser: drop unused mxser_port::normal_termios
  mxser: remove unused mxser_port::stop_rx
  mxser: drop mxser_port::baud_base
  mxser: drop mxser_port::custom_divisor
  mxser: cleanup mxser_change_speed
  mxser: extract mxser_ioctl_op_mode
  mxser: simplify mxser_ioctl_op_mode
  mxser: dedup mxser_must_set_enhance_mode
  mxser: introduce mxser_must_select_bank and use it
  mxser: clean up the rest of MUST helpers
  mxser: move board init into mxser_initbrd
  mxser: inline mxser_board_remove into mxser_remove
  mxser: pci, switch to managed resources
  mxser: move request irq to probe and switch to managed
  mxser: remove info message from probe
  mxser: remove mxser_cardinfo
  mxser: cleanup mxser_process_txrx_fifo
  mxser: rework and simplify mxser_open
  mxser: make mxser_board::idx really an index
  mxser: alloc struct mxser_board dynamically
  mxser: alloc only needed # of ports
  mxser: remove pointless ioaddr checks
  mxser: cleanup mxser_rs_break
  mxser: cleanup mxser_dtr_rts
  mxser: don't start TX from tty_operations::put_char
  mxser: extract and dedup CTS handling
  mxser: introduce and use start/stop_tx helpers
  mxser: remove xmit_cnt < 0 tests
  mxser: decrypt FCR values
  mxser: fix typos around enhanced mode
  mxser: access info->MCR under info->slock
  mxser: use port variable in mxser_set_serial_info
  mxser: rename flags to old_speed in mxser_set_serial_info
  mxser: introduce mxser_16550A_or_MUST helper
  mxser: Documentation, remove traces of callout device
  mxser: Documentation, make the docs up-to-date
  mxser: Documentation, fix typos
  MAINTAINERS: add me back as mxser maintainer

 .../driver-api/serial/moxa-smartio.rst        |  496 +----
 MAINTAINERS                                   |    3 +-
 drivers/tty/Kconfig                           |    2 +-
 drivers/tty/mxser.c                           | 1950 +++++------------
 drivers/tty/mxser.h                           |  151 --
 5 files changed, 622 insertions(+), 1980 deletions(-)
 delete mode 100644 drivers/tty/mxser.h

-- 
2.32.0


^ permalink raw reply	[flat|nested] 72+ messages in thread

end of thread, other threads:[~2021-06-18 11:10 UTC | newest]

Thread overview: 72+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-18  6:14 [PATCH 00/69] mxser: cleanup Jiri Slaby
2021-06-18  6:14 ` [PATCH 01/70] mxser: drop ISA support Jiri Slaby
2021-06-18  6:14 ` [PATCH 02/70] mxser: renumber mxser_cards Jiri Slaby
2021-06-18  6:14 ` [PATCH 03/70] mxser: remove info printout from init Jiri Slaby
2021-06-18  6:14 ` [PATCH 04/70] mxser: integrate mxser.h into .c Jiri Slaby
2021-06-18  6:14 ` [PATCH 05/70] mxser: cleanup Gpci_uart_info struct Jiri Slaby
2021-06-18  6:14 ` [PATCH 06/70] mxser: rename CheckIsMoxaMust to mxser_get_must_hwid Jiri Slaby
2021-06-18  6:14 ` [PATCH 07/70] mxser: rename mxser_board::chip_flag to must_hwid Jiri Slaby
2021-06-18  6:14 ` [PATCH 08/70] mxser: introduce enum mxser_must_hwid Jiri Slaby
2021-06-18  6:14 ` [PATCH 09/70] mxser: drop constant board::uart_type Jiri Slaby
2021-06-18  6:14 ` [PATCH 10/70] mxser: move max_baud from port to board Jiri Slaby
2021-06-18  6:14 ` [PATCH 11/70] mxser: remove nonsense from ISR Jiri Slaby
2021-06-18  6:14 ` [PATCH 12/70] mxser: cleanup LSR handling in mxser_receive_chars Jiri Slaby
2021-06-18  6:14 ` [PATCH 13/70] mxser: extract port ISR Jiri Slaby
2021-06-18  6:14 ` [PATCH 14/70] mxser: simplify mxser_interrupt and drop mxser_board::vector_mask Jiri Slaby
2021-06-18  6:14 ` [PATCH 15/70] mxser: extract mxser_receive_chars_new Jiri Slaby
2021-06-18  6:14 ` [PATCH 16/70] mxser: extract mxser_receive_chars_old Jiri Slaby
2021-06-18  6:14 ` [PATCH 17/70] mxser: remove else from LSR bits checks Jiri Slaby
2021-06-18  6:14 ` [PATCH 18/70] mxser: correct types for uart variables Jiri Slaby
2021-06-18  6:14 ` [PATCH 19/70] mxser: make xmit ring buffer variables unsigned Jiri Slaby
2021-06-18  6:14 ` [PATCH 20/70] mxser: drop UART_MCR_AFE and UART_LSR_SPECIAL defines Jiri Slaby
2021-06-18  6:14 ` [PATCH 21/70] mxser: drop unused MOXA_DIAGNOSE macro Jiri Slaby
2021-06-18  6:14 ` [PATCH 22/70] mxser: remove MOXA_GET_MAJOR deprecated ioctl Jiri Slaby
2021-06-18  6:14 ` [PATCH 23/70] mxser: remove MOXA_SET_BAUD_METHOD ioctl Jiri Slaby
2021-06-18  6:14 ` [PATCH 24/70] mxser: remove MOXA_ASPP_MON and friends Jiri Slaby
2021-06-18  6:14 ` [PATCH 25/70] mxser: remove MOXA_ASPP_LSTATUS ioctl Jiri Slaby
2021-06-18  6:14 ` [PATCH 26/70] mxser: remove MOXA_CHKPORTENABLE ioctl Jiri Slaby
2021-06-18  6:14 ` [PATCH 27/70] mxser: remove MOXA_GETDATACOUNT ioctl Jiri Slaby
2021-06-18  6:14 ` [PATCH 28/70] mxser: remove MOXA_GETMSTATUS ioctl Jiri Slaby
2021-06-18  6:14 ` [PATCH 29/70] mxser: remove MOXA_ASPP_OQUEUE ioctl Jiri Slaby
2021-06-18  6:14 ` [PATCH 30/70] mxser: remove MOXA_HighSpeedOn ioctl Jiri Slaby
2021-06-18  6:14 ` [PATCH 31/70] mxser: remove cnt from mxser_receive_chars Jiri Slaby
2021-06-18  6:14 ` [PATCH 32/70] mxser: don't allocate MXSER_PORTS + 1 Jiri Slaby
2021-06-18  6:14 ` [PATCH 33/70] mxser: drop unused mxser_port::normal_termios Jiri Slaby
2021-06-18  6:14 ` [PATCH 34/70] mxser: remove unused mxser_port::stop_rx Jiri Slaby
2021-06-18  6:14 ` [PATCH 35/70] mxser: drop mxser_port::baud_base Jiri Slaby
2021-06-18  6:14 ` [PATCH 36/70] mxser: drop mxser_port::custom_divisor Jiri Slaby
2021-06-18  6:14 ` [PATCH 37/70] mxser: cleanup mxser_change_speed Jiri Slaby
2021-06-18  6:14 ` [PATCH 38/70] mxser: extract mxser_ioctl_op_mode Jiri Slaby
2021-06-18  6:14 ` [PATCH 39/70] mxser: simplify mxser_ioctl_op_mode Jiri Slaby
2021-06-18  6:14 ` [PATCH 40/70] mxser: dedup mxser_must_set_enhance_mode Jiri Slaby
2021-06-18  6:14 ` [PATCH 41/70] mxser: introduce mxser_must_select_bank and use it Jiri Slaby
2021-06-18  6:14 ` [PATCH 42/70] mxser: clean up the rest of MUST helpers Jiri Slaby
2021-06-18  6:14 ` [PATCH 43/70] mxser: move board init into mxser_initbrd Jiri Slaby
2021-06-18  6:14 ` [PATCH 44/70] mxser: inline mxser_board_remove into mxser_remove Jiri Slaby
2021-06-18  6:14 ` [PATCH 45/70] mxser: pci, switch to managed resources Jiri Slaby
2021-06-18  6:14 ` [PATCH 46/70] mxser: move request irq to probe and switch to managed Jiri Slaby
2021-06-18  6:14 ` [PATCH 47/70] mxser: remove info message from probe Jiri Slaby
2021-06-18  6:14 ` [PATCH 48/70] mxser: remove mxser_cardinfo Jiri Slaby
2021-06-18  6:14 ` [PATCH 49/70] mxser: cleanup mxser_process_txrx_fifo Jiri Slaby
2021-06-18  6:14 ` [PATCH 50/70] mxser: rework and simplify mxser_open Jiri Slaby
2021-06-18  6:14 ` [PATCH 51/70] mxser: make mxser_board::idx really an index Jiri Slaby
2021-06-18  6:14 ` [PATCH 52/70] mxser: alloc struct mxser_board dynamically Jiri Slaby
2021-06-18  6:14 ` [PATCH 53/70] mxser: alloc only needed # of ports Jiri Slaby
2021-06-18  6:15 ` [PATCH 54/70] mxser: remove pointless ioaddr checks Jiri Slaby
2021-06-18  6:15 ` [PATCH 55/70] mxser: cleanup mxser_rs_break Jiri Slaby
2021-06-18  6:15 ` [PATCH 56/70] mxser: cleanup mxser_dtr_rts Jiri Slaby
2021-06-18  6:15 ` [PATCH 57/70] mxser: don't start TX from tty_operations::put_char Jiri Slaby
2021-06-18  6:15 ` [PATCH 58/70] mxser: extract and dedup CTS handling Jiri Slaby
2021-06-18  6:15 ` [PATCH 59/70] mxser: introduce and use start/stop_tx helpers Jiri Slaby
2021-06-18  6:15 ` [PATCH 60/70] mxser: remove xmit_cnt < 0 tests Jiri Slaby
2021-06-18  6:15 ` [PATCH 61/70] mxser: decrypt FCR values Jiri Slaby
2021-06-18  6:15 ` [PATCH 62/70] mxser: fix typos around enhanced mode Jiri Slaby
2021-06-18  6:15 ` [PATCH 63/70] mxser: access info->MCR under info->slock Jiri Slaby
2021-06-18  6:15 ` [PATCH 64/70] mxser: use port variable in mxser_set_serial_info Jiri Slaby
2021-06-18  6:15 ` [PATCH 65/70] mxser: rename flags to old_speed " Jiri Slaby
2021-06-18  6:15 ` [PATCH 66/70] mxser: introduce mxser_16550A_or_MUST helper Jiri Slaby
2021-06-18  6:15 ` [PATCH 67/70] mxser: Documentation, remove traces of callout device Jiri Slaby
2021-06-18  6:15 ` [PATCH 68/70] mxser: Documentation, make the docs up-to-date Jiri Slaby
2021-06-18  6:15 ` [PATCH 69/70] mxser: Documentation, fix typos Jiri Slaby
2021-06-18  6:15 ` [PATCH 70/70] MAINTAINERS: add me back as mxser maintainer Jiri Slaby
2021-06-18 11:10 ` [PATCH 00/69] mxser: cleanup Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).