diff options
author | Peter Hurley <peter@hurleysoftware.com> | 2015-03-09 23:27:13 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-03-26 18:16:20 +0300 |
commit | 1cfe42b7fd299723b521b5b4bd8019a611366c5e (patch) | |
tree | 54717b3c77ef17553b6d91e38f3854e10cd53ebb /drivers/tty | |
parent | c7cef0a84912cab3c9df8949b034e4aa62982ec9 (diff) | |
download | linux-1cfe42b7fd299723b521b5b4bd8019a611366c5e.tar.xz |
serial: core: Fix kernel doc for uart_console_write()
'/**' is required to start a kernel-doc comment block.
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r-- | drivers/tty/serial/serial_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/serial_core.c b/drivers/tty/serial/serial_core.c index a373eff44ae8..eb5b03be9dfd 100644 --- a/drivers/tty/serial/serial_core.c +++ b/drivers/tty/serial/serial_core.c @@ -1765,7 +1765,7 @@ static const struct file_operations uart_proc_fops = { #endif #if defined(CONFIG_SERIAL_CORE_CONSOLE) || defined(CONFIG_CONSOLE_POLL) -/* +/** * uart_console_write - write a console message to a serial port * @port: the port to write the message * @s: array of characters |