Commit dd6ffc9c authored by Sean Anderson's avatar Sean Anderson Committed by Greg Kroah-Hartman

tty: serial: uartlite: Document uartlite_data in kernel-doc style

Use @ and - to conform with kernel-doc style.
Reported-by: default avatarkernel test robot <yujie.liu@intel.com>
Signed-off-by: default avatarSean Anderson <sean.anderson@seco.com>
Reviewed-by: default avatarRandy Dunlap <rdunlap@infradead.org>
Reviewed-by: default avatarShubhrajyoti Datta <shubhrajyoti.datta@amd.com>
Link: https://lore.kernel.org/r/20231106152428.3641883-1-sean.anderson@seco.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 50d371a9
...@@ -62,11 +62,11 @@ static struct uart_port *console_port; ...@@ -62,11 +62,11 @@ static struct uart_port *console_port;
#endif #endif
/** /**
* struct uartlite_data: Driver private data * struct uartlite_data - Driver private data
* reg_ops: Functions to read/write registers * @reg_ops: Functions to read/write registers
* clk: Our parent clock, if present * @clk: Our parent clock, if present
* baud: The baud rate configured when this device was synthesized * @baud: The baud rate configured when this device was synthesized
* cflags: The cflags for parity and data bits * @cflags: The cflags for parity and data bits
*/ */
struct uartlite_data { struct uartlite_data {
const struct uartlite_reg_ops *reg_ops; const struct uartlite_reg_ops *reg_ops;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment