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

Configure Feed

Select the types of activity you want to include in your feed.

eeprom_93cx6: fix struct member kernel-doc

Remove the function parameter parts of the struct member descriptions
to prevent kernel-doc warnings:

Warning: include/linux/eeprom_93cx6.h:64 struct member 'register_read'
not described in 'eeprom_93cx6'
Warning: ../include/linux/eeprom_93cx6.h:64 struct member 'register_write'
not described in 'eeprom_93cx6'

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Link: https://patch.msgid.link/20251214202739.2216904-1-rdunlap@infradead.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Randy Dunlap and committed by
Greg Kroah-Hartman
a2450bdd 38a5a54f

+4 -4
+4 -4
include/linux/eeprom_93cx6.h
··· 31 31 * struct eeprom_93cx6 - control structure for setting the commands 32 32 * for reading the eeprom data. 33 33 * @data: private pointer for the driver. 34 - * @register_read(struct eeprom_93cx6 *eeprom): handler to 35 - * read the eeprom register, this function should set all reg_* fields. 36 - * @register_write(struct eeprom_93cx6 *eeprom): handler to 37 - * write to the eeprom register by using all reg_* fields. 34 + * @register_read: handler to read the eeprom register; 35 + * this function should set all reg_* fields. 36 + * @register_write: handler to write to the eeprom register by using 37 + * all reg_* fields. 38 38 * @width: eeprom width, should be one of the PCI_EEPROM_WIDTH_* defines 39 39 * @quirks: eeprom or controller quirks 40 40 * @drive_data: Set if we're driving the data line.