summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean Anderson <sean.anderson@seco.com>2023-11-06 10:24:28 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-11-23 19:22:07 +0000
commitdd6ffc9c57f69c2708f7c14dd7da5901b7d24b98 (patch)
treeed5e7af52b5b5b63a98ec4d4e97590b811249aa2
parent50d371a9c5babf54bbcd267a09a2786b6a44a194 (diff)
downloadlinux-stable-dd6ffc9c57f69c2708f7c14dd7da5901b7d24b98.tar.gz
linux-stable-dd6ffc9c57f69c2708f7c14dd7da5901b7d24b98.tar.bz2
linux-stable-dd6ffc9c57f69c2708f7c14dd7da5901b7d24b98.zip
tty: serial: uartlite: Document uartlite_data in kernel-doc style
Use @ and - to conform with kernel-doc style. Reported-by: kernel test robot <yujie.liu@intel.com> Signed-off-by: Sean Anderson <sean.anderson@seco.com> Reviewed-by: Randy Dunlap <rdunlap@infradead.org> Reviewed-by: Shubhrajyoti Datta <shubhrajyoti.datta@amd.com> Link: https://lore.kernel.org/r/20231106152428.3641883-1-sean.anderson@seco.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/tty/serial/uartlite.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/tty/serial/uartlite.c b/drivers/tty/serial/uartlite.c
index 48c9fca1566b..f9c69f543a26 100644
--- a/drivers/tty/serial/uartlite.c
+++ b/drivers/tty/serial/uartlite.c
@@ -62,11 +62,11 @@ static struct uart_port *console_port;
#endif
/**
- * struct uartlite_data: Driver private data
- * reg_ops: Functions to read/write registers
- * clk: Our parent clock, if present
- * baud: The baud rate configured when this device was synthesized
- * cflags: The cflags for parity and data bits
+ * struct uartlite_data - Driver private data
+ * @reg_ops: Functions to read/write registers
+ * @clk: Our parent clock, if present
+ * @baud: The baud rate configured when this device was synthesized
+ * @cflags: The cflags for parity and data bits
*/
struct uartlite_data {
const struct uartlite_reg_ops *reg_ops;