mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 07:12:09 +00:00
pinctrl: pinctrl-at91: Demote non-kerneldoc header and complete another
The documentation header for 'struct at91_pinctrl_mux_ops' was missing entries for {g,s}et_drivestrength and {g,s}et_slewrate. Fixes the following W=1 kernel build warning(s): drivers/pinctrl/pinctrl-at91.c:77: warning: cannot understand function prototype: 'enum drive_strength_bit ' drivers/pinctrl/pinctrl-at91.c:187: warning: Function parameter or member 'get_drivestrength' not described in 'at91_pinctrl_mux_ops' drivers/pinctrl/pinctrl-at91.c:187: warning: Function parameter or member 'set_drivestrength' not described in 'at91_pinctrl_mux_ops' drivers/pinctrl/pinctrl-at91.c:187: warning: Function parameter or member 'get_slewrate' not described in 'at91_pinctrl_mux_ops' drivers/pinctrl/pinctrl-at91.c:187: warning: Function parameter or member 'set_slewrate' not described in 'at91_pinctrl_mux_ops' Signed-off-by: Lee Jones <lee.jones@linaro.org> Cc: Ludovic Desroches <ludovic.desroches@microchip.com> Cc: Nicolas Ferre <nicolas.ferre@microchip.com> Cc: Alexandre Belloni <alexandre.belloni@bootlin.com> Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Link: https://lore.kernel.org/r/20200713144930.1034632-18-lee.jones@linaro.org Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
898503ee0b
commit
aa78655d49
1 changed files with 5 additions and 1 deletions
|
@ -65,7 +65,7 @@ static int gpio_banks;
|
||||||
#define DEBOUNCE_VAL_SHIFT 17
|
#define DEBOUNCE_VAL_SHIFT 17
|
||||||
#define DEBOUNCE_VAL (0x3fff << DEBOUNCE_VAL_SHIFT)
|
#define DEBOUNCE_VAL (0x3fff << DEBOUNCE_VAL_SHIFT)
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* These defines will translated the dt binding settings to our internal
|
* These defines will translated the dt binding settings to our internal
|
||||||
* settings. They are not necessarily the same value as the register setting.
|
* settings. They are not necessarily the same value as the register setting.
|
||||||
* The actual drive strength current of low, medium and high must be looked up
|
* The actual drive strength current of low, medium and high must be looked up
|
||||||
|
@ -161,6 +161,10 @@ struct at91_pin_group {
|
||||||
* @set_pulldown: enable/disable pulldown
|
* @set_pulldown: enable/disable pulldown
|
||||||
* @get_schmitt_trig: get schmitt trigger status
|
* @get_schmitt_trig: get schmitt trigger status
|
||||||
* @disable_schmitt_trig: disable schmitt trigger
|
* @disable_schmitt_trig: disable schmitt trigger
|
||||||
|
* @get_drivestrength: get driver strength
|
||||||
|
* @set_drivestrength: set driver strength
|
||||||
|
* @get_slewrate: get slew rate
|
||||||
|
* @set_slewrate: set slew rate
|
||||||
* @irq_type: return irq type
|
* @irq_type: return irq type
|
||||||
*/
|
*/
|
||||||
struct at91_pinctrl_mux_ops {
|
struct at91_pinctrl_mux_ops {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue