Commit 34d946b7 authored by Frank Li's avatar Frank Li Committed by Alexandre Belloni

i3c: master: fix kernel-doc check warning

Fix warning found by
	'scripts/kernel-doc -v -none include/linux/i3c/master.h'

include/linux/i3c/master.h:457: warning: Function parameter or member 'enable_hotjoin' not described in 'i3c_master_controller_ops'
include/linux/i3c/master.h:457: warning: Function parameter or member 'disable_hotjoin' not described in 'i3c_master_controller_ops'
include/linux/i3c/master.h:499: warning: Function parameter or member 'hotjoin' not described in 'i3c_master_controller'
Signed-off-by: default avatarFrank Li <Frank.Li@nxp.com>
Reviewed-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/r/20240109052548.2128133-1-Frank.Li@nxp.comSigned-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
parent 374c13f9
...@@ -433,6 +433,8 @@ struct i3c_bus { ...@@ -433,6 +433,8 @@ struct i3c_bus {
* for a future IBI * for a future IBI
* This method is mandatory only if ->request_ibi is not * This method is mandatory only if ->request_ibi is not
* NULL. * NULL.
* @enable_hotjoin: enable hot join event detect.
* @disable_hotjoin: disable hot join event detect.
*/ */
struct i3c_master_controller_ops { struct i3c_master_controller_ops {
int (*bus_init)(struct i3c_master_controller *master); int (*bus_init)(struct i3c_master_controller *master);
...@@ -474,6 +476,7 @@ struct i3c_master_controller_ops { ...@@ -474,6 +476,7 @@ struct i3c_master_controller_ops {
* @ops: master operations. See &struct i3c_master_controller_ops * @ops: master operations. See &struct i3c_master_controller_ops
* @secondary: true if the master is a secondary master * @secondary: true if the master is a secondary master
* @init_done: true when the bus initialization is done * @init_done: true when the bus initialization is done
* @hotjoin: true if the master support hotjoin
* @boardinfo.i3c: list of I3C boardinfo objects * @boardinfo.i3c: list of I3C boardinfo objects
* @boardinfo.i2c: list of I2C boardinfo objects * @boardinfo.i2c: list of I2C boardinfo objects
* @boardinfo: board-level information attached to devices connected on the bus * @boardinfo: board-level information attached to devices connected on the bus
......
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