On 16/01/2020 13:14, Lukas Wunner wrote: > Document the driver private data of the BCM2835 auxiliary UART so that > upcoming commits may add further members with proper kerneldoc. > > Signed-off-by: Lukas Wunner <lukas@xxxxxxxxx> Reviewed-by: Matthias Brugger <mbrugger@xxxxxxxx> > --- > drivers/tty/serial/8250/8250_bcm2835aux.c | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/drivers/tty/serial/8250/8250_bcm2835aux.c b/drivers/tty/serial/8250/8250_bcm2835aux.c > index d21460c9ef4b..e70e3cc30050 100644 > --- a/drivers/tty/serial/8250/8250_bcm2835aux.c > +++ b/drivers/tty/serial/8250/8250_bcm2835aux.c > @@ -16,6 +16,11 @@ > > #include "8250.h" > > +/** > + * struct bcm2835aux_data - driver private data of BCM2835 auxiliary UART > + * @clk: clock producer of the port's uartclk > + * @line: index of the port's serial8250_ports[] entry > + */ > struct bcm2835aux_data { > struct clk *clk; > int line; >