Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

docs: serial: move it to the driver-api

The contents of this directory is mostly driver-api stuff.

Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>

+10 -9
+1
Documentation/driver-api/index.rst
··· 88 88 pti_intel_mid 89 89 pwm 90 90 rfkill 91 + serial/index 91 92 sgi-ioc4 92 93 sm501 93 94 smsc_ece1099
Documentation/serial/cyclades_z.rst Documentation/driver-api/serial/cyclades_z.rst
+1 -1
Documentation/serial/driver.rst Documentation/driver-api/serial/driver.rst
··· 311 311 This call must not sleep 312 312 313 313 set_ldisc(port,termios) 314 - Notifier for discipline change. See Documentation/serial/tty.rst. 314 + Notifier for discipline change. See Documentation/driver-api/serial/tty.rst. 315 315 316 316 Locking: caller holds tty_port->mutex 317 317
+1 -1
Documentation/serial/index.rst Documentation/driver-api/serial/index.rst
··· 1 - :orphan: 1 + .. SPDX-License-Identifier: GPL-2.0 2 2 3 3 ========================== 4 4 Support for Serial devices
Documentation/serial/moxa-smartio.rst Documentation/driver-api/serial/moxa-smartio.rst
Documentation/serial/n_gsm.rst Documentation/driver-api/serial/n_gsm.rst
Documentation/serial/rocket.rst Documentation/driver-api/serial/rocket.rst
Documentation/serial/serial-iso7816.rst Documentation/driver-api/serial/serial-iso7816.rst
Documentation/serial/serial-rs485.rst Documentation/driver-api/serial/serial-rs485.rst
Documentation/serial/tty.rst Documentation/driver-api/serial/tty.rst
+3 -3
MAINTAINERS
··· 10767 10767 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD 10768 10768 M: Jiri Slaby <jirislaby@gmail.com> 10769 10769 S: Maintained 10770 - F: Documentation/serial/moxa-smartio.rst 10770 + F: Documentation/driver-api/serial/moxa-smartio.rst 10771 10771 F: drivers/tty/mxser.* 10772 10772 10773 10773 MR800 AVERMEDIA USB FM RADIO DRIVER ··· 13689 13689 P: Comtrol Corp. 13690 13690 W: http://www.comtrol.com 13691 13691 S: Maintained 13692 - F: Documentation/serial/rocket.rst 13692 + F: Documentation/driver-api/serial/rocket.rst 13693 13693 F: drivers/tty/rocket* 13694 13694 13695 13695 ROCKETPORT EXPRESS/INFINITY DRIVER ··· 16228 16228 M: Jiri Slaby <jslaby@suse.com> 16229 16229 S: Supported 16230 16230 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git 16231 - F: Documentation/serial/ 16231 + F: Documentation/driver-api/serial/ 16232 16232 F: drivers/tty/ 16233 16233 F: drivers/tty/serial/serial_core.c 16234 16234 F: include/linux/serial_core.h
+2 -2
drivers/tty/Kconfig
··· 175 175 This driver supports Comtrol RocketPort and RocketModem PCI boards. 176 176 These boards provide 2, 4, 8, 16, or 32 high-speed serial ports or 177 177 modems. For information about the RocketPort/RocketModem boards 178 - and this driver read <file:Documentation/serial/rocket.rst>. 178 + and this driver read <file:Documentation/driver-api/serial/rocket.rst>. 179 179 180 180 To compile this driver as a module, choose M here: the 181 181 module will be called rocket. ··· 193 193 your Linux box, for instance in order to become a dial-in server. 194 194 195 195 For information about the Cyclades-Z card, read 196 - <file:Documentation/serial/cyclades_z.rst>. 196 + <file:Documentation/driver-api/serial/cyclades_z.rst>. 197 197 198 198 To compile this driver as a module, choose M here: the 199 199 module will be called cyclades.
+1 -1
drivers/tty/serial/ucc_uart.c
··· 1081 1081 } 1082 1082 /* UART operations 1083 1083 * 1084 - * Details on these functions can be found in Documentation/serial/driver.rst 1084 + * Details on these functions can be found in Documentation/driver-api/serial/driver.rst 1085 1085 */ 1086 1086 static const struct uart_ops qe_uart_pops = { 1087 1087 .tx_empty = qe_uart_tx_empty,
+1 -1
include/linux/serial_core.h
··· 32 32 33 33 /* 34 34 * This structure describes all the operations that can be done on the 35 - * physical hardware. See Documentation/serial/driver.rst for details. 35 + * physical hardware. See Documentation/driver-api/serial/driver.rst for details. 36 36 */ 37 37 struct uart_ops { 38 38 unsigned int (*tx_empty)(struct uart_port *);