[PATCH] pinctrl: pinconf-generic: fix an enum name description

Randy Dunlap posted 1 patch 1 month, 2 weeks ago
include/linux/pinctrl/pinconf-generic.h |    2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] pinctrl: pinconf-generic: fix an enum name description
Posted by Randy Dunlap 1 month, 2 weeks ago
Correct an enum name in a kernel-doc comment to avoid kernel-doc
warnings:

Warning: include/linux/pinctrl/pinconf-generic.h:161 Enum value
 'PIN_CONFIG_SKEW_DELAY_OUTPUT_PS' not described in enum 'pin_config_param'
Warning: include/linux/pinctrl/pinconf-generic.h:161 Excess enum value
 '@PIN_CONFIG_SKEW_DELAY_OUPUT_PS' description in 'pin_config_param'

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
---
Cc: Linus Walleij <linusw@kernel.org>
Cc: linux-gpio@vger.kernel.org

 include/linux/pinctrl/pinconf-generic.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20260227.orig/include/linux/pinctrl/pinconf-generic.h
+++ linux-next-20260227/include/linux/pinctrl/pinconf-generic.h
@@ -115,7 +115,7 @@ struct pinctrl_map;
  * @PIN_CONFIG_SKEW_DELAY_INPUT_PS: if the pin has independent values for the
  *	programmable skew rate (on inputs) and latch delay (on outputs), then
  *	this parameter specifies the clock skew only. The argument is in ps.
- * @PIN_CONFIG_SKEW_DELAY_OUPUT_PS: if the pin has independent values for the
+ * @PIN_CONFIG_SKEW_DELAY_OUTPUT_PS: if the pin has independent values for the
  *	programmable skew rate (on inputs) and latch delay (on outputs), then
  *	this parameter specifies the latch delay only. The argument is in ps.
  * @PIN_CONFIG_SLEEP_HARDWARE_STATE: indicate this is sleep related state.
Re: [PATCH] pinctrl: pinconf-generic: fix an enum name description
Posted by Linus Walleij 1 month, 2 weeks ago
On Sun, Mar 1, 2026 at 2:48 AM Randy Dunlap <rdunlap@infradead.org> wrote:

> Correct an enum name in a kernel-doc comment to avoid kernel-doc
> warnings:
>
> Warning: include/linux/pinctrl/pinconf-generic.h:161 Enum value
>  'PIN_CONFIG_SKEW_DELAY_OUTPUT_PS' not described in enum 'pin_config_param'
> Warning: include/linux/pinctrl/pinconf-generic.h:161 Excess enum value
>  '@PIN_CONFIG_SKEW_DELAY_OUPUT_PS' description in 'pin_config_param'
>
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>

Patch applied!

Thanks Randy.

Yours,
Linus Walleij