diff options
author | Heiko Stuebner <[email protected]> | 2020-05-17 23:56:06 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2020-05-29 12:42:54 +0200 |
commit | f40a6be4a4e4985aef5365007e2459d757f26bdd (patch) | |
tree | b66ec9d409acebc9ad53963093a10c9f592fdaa1 | |
parent | 01c38ecff8b13947f7639cb7ca9998b21c2c0ae7 (diff) |
serial: 8520_port: Fix function param documentation
The parameter is named p while the documentation talks about up.
Fix the doc to be in line with the code.
Fixes: 058bc104f7ca ("serial: 8250: Generalize rs485 software emulation")
Suggested-by: Andy Shevchenko <[email protected]>
Signed-off-by: Heiko Stuebner <[email protected]>
Reviewed-by: Andy Shevchenko <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/tty/serial/8250/8250_port.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/8250/8250_port.c b/drivers/tty/serial/8250/8250_port.c index 4d83c85a7389..bf2722e5e3aa 100644 --- a/drivers/tty/serial/8250/8250_port.c +++ b/drivers/tty/serial/8250/8250_port.c @@ -1432,7 +1432,7 @@ static void serial8250_stop_rx(struct uart_port *port) /** * serial8250_em485_stop_tx() - generic ->rs485_stop_tx() callback - * @up: uart 8250 port + * @p: uart 8250 port * * Generic callback usable by 8250 uart drivers to stop rs485 transmission. */ |