Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

HSI: ssi_protocol: fix struct members kernel-doc warnings

Fix a typo in one struct member's name and add the @work struct member
to quieten kernel-doc warnings:

ssi_protocol.c:144: warning: Function parameter or struct member 'work' not described in 'ssi_protocol'
ssi_protocol.c:144: warning: Function parameter or struct member 'tx_usecnt' not described in 'ssi_protocol'
ssi_protocol.c:144: warning: Excess struct member 'tx_usecount' description in 'ssi_protocol'

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Link: https://lore.kernel.org/r/20240221064112.9155-1-rdunlap@infradead.org
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>

authored by

Randy Dunlap and committed by
Sebastian Reichel
36937602 a0e35a17

+2 -1
+2 -1
drivers/hsi/clients/ssi_protocol.c
··· 114 114 * @netdev: Phonet network device 115 115 * @txqueue: TX data queue 116 116 * @cmdqueue: Queue of free commands 117 + * @work: &struct work_struct for scheduled work 117 118 * @cl: HSI client own reference 118 119 * @link: Link for ssip_list 119 - * @tx_usecount: Refcount to keep track the slaves that use the wake line 120 + * @tx_usecnt: Refcount to keep track the slaves that use the wake line 120 121 * @channel_id_cmd: HSI channel id for command stream 121 122 * @channel_id_data: HSI channel id for data stream 122 123 */