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

tty: serial, fix kernel-doc

As in the previous patches, fix kernel-doc in serial drivers.

Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Link: https://lore.kernel.org/r/20200818085655.12071-8-jslaby@suse.cz
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Jiri Slaby and committed by
Greg Kroah-Hartman
145f5646 87d03a94

+7 -8
+3 -4
drivers/tty/serial/ifx6x60.c
··· 257 257 258 258 /** 259 259 * ifx_spi_timeout - SPI timeout 260 - * @arg: our SPI device 260 + * @t: timer in our SPI device 261 261 * 262 262 * The SPI has timed out: hang up the tty. Users will then see a hangup 263 263 * and error events. ··· 277 277 /** 278 278 * ifx_spi_tiocmget - get modem lines 279 279 * @tty: our tty device 280 - * @filp: file handle issuing the request 281 280 * 282 281 * Map the signal state into Linux modem flags and report the value 283 282 * in Linux terms ··· 530 531 531 532 /** 532 533 * ifx_port_hangup 533 - * @port: our tty port 534 + * @tty: our tty 534 535 * 535 536 * tty port hang up. Called when tty_hangup processing is invoked either 536 537 * by loss of carrier, or by software (eg vhangup). Serialized against ··· 610 611 611 612 /** 612 613 * ifx_spi_insert_fip_string - queue received data 613 - * @ifx_ser: our SPI device 614 + * @ifx_dev: our SPI device 614 615 * @chars: buffer we have received 615 616 * @size: number of chars reeived 616 617 *
+4 -4
drivers/tty/serial/men_z135_uart.c
··· 173 173 174 174 /** 175 175 * men_z135_handle_modem_status() - Handle change of modem status 176 - * @port: The UART port 176 + * @uart: The UART port 177 177 * 178 178 * Handle change of modem status register. This is done by reading the "delta" 179 179 * versions of DCD (Data Carrier Detect) and CTS (Clear To Send). ··· 236 236 237 237 /** 238 238 * men_z135_handle_rx() - RX tasklet routine 239 - * @arg: Pointer to struct men_z135_port 239 + * @uart: Pointer to struct men_z135_port 240 240 * 241 241 * Copy from RX FIFO and acknowledge number of bytes copied. 242 242 */ ··· 287 287 288 288 /** 289 289 * men_z135_handle_tx() - TX tasklet routine 290 - * @arg: Pointer to struct men_z135_port 290 + * @uart: Pointer to struct men_z135_port 291 291 * 292 292 */ 293 293 static void men_z135_handle_tx(struct men_z135_port *uart) ··· 596 596 597 597 /** 598 598 * men_z135_enable_ms() - Enable Modem Status 599 - * port: 599 + * @port: the port 600 600 * 601 601 * Enable Modem Status IRQ. 602 602 */