tty: Update some of the USB kernel doc

Updates some usb_serial_port members documentation.

Signed-off-by: Leandro Dorileo <ldorileo@gmail.com>
Signed-off-by: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Leandro Dorileo and committed by Linus Torvalds 78c5b82e 19e05426

+5 -2
+5 -2
include/linux/usb/serial.h
··· 29 29 /** 30 30 * usb_serial_port: structure for the specific ports of a device. 31 31 * @serial: pointer back to the struct usb_serial owner of this port. 32 - * @tty: pointer to the corresponding tty for this port. 32 + * @port: pointer to the corresponding tty_port for this port. 33 33 * @lock: spinlock to grab when updating portions of this structure. 34 34 * @mutex: mutex used to synchronize serial_open() and serial_close() 35 35 * access for this port. ··· 44 44 * @interrupt_out_endpointAddress: endpoint address for the interrupt out pipe 45 45 * for this port. 46 46 * @bulk_in_buffer: pointer to the bulk in buffer for this port. 47 + * @bulk_in_size: the size of the bulk_in_buffer, in bytes. 47 48 * @read_urb: pointer to the bulk in struct urb for this port. 48 49 * @bulk_in_endpointAddress: endpoint address for the bulk in pipe for this 49 50 * port. 50 51 * @bulk_out_buffer: pointer to the bulk out buffer for this port. 51 52 * @bulk_out_size: the size of the bulk_out_buffer, in bytes. 52 53 * @write_urb: pointer to the bulk out struct urb for this port. 54 + * @write_urb_busy: port`s writing status 53 55 * @bulk_out_endpointAddress: endpoint address for the bulk out pipe for this 54 56 * port. 55 57 * @write_wait: a wait_queue_head_t used by the port. 56 58 * @work: work queue entry for the line discipline waking up. 57 - * @open_count: number of times this port has been opened. 58 59 * @throttled: nonzero if the read urb is inactive to throttle the device 59 60 * @throttle_req: nonzero if the tty wants to throttle us 61 + * @console: attached usb serial console 62 + * @dev: pointer to the serial device 60 63 * 61 64 * This structure is used by the usb-serial core and drivers for the specific 62 65 * ports of a device.