From: Yang Li Date: Fri, 7 Jan 2022 07:44:45 +0000 (+0100) Subject: mux: Fix struct mux_state kernel-doc comment X-Git-Tag: v5.18-rc1~83^2~149 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=ad10ab11348c7379f9e66552b2c6a15cac393940;p=linux-block.git mux: Fix struct mux_state kernel-doc comment A warning is reported because a colon was dropped, it is found by running scripts/kernel-doc, which is caused by using 'make W=1'. drivers/mux/core.c:44: warning: Function parameter or member 'state' not described in 'mux_state' Reported-by: Abaci Robot Signed-off-by: Yang Li Signed-off-by: Peter Rosin Link: https://lore.kernel.org/r/a9a970fc-63f9-5ab9-4983-fba5b01bebe2@axentia.se Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/mux/core.c b/drivers/mux/core.c index 1a76a536d4b1..49bedbe6316c 100644 --- a/drivers/mux/core.c +++ b/drivers/mux/core.c @@ -33,7 +33,7 @@ * struct mux_state - Represents a mux controller state specific to a given * consumer. * @mux: Pointer to a mux controller. - * @state State of the mux to be selected. + * @state: State of the mux to be selected. * * This structure is specific to the consumer that acquires it and has * information specific to that consumer.