pinctrl: nuvoton: Use 'unsigned int' instead of just 'unsigned'.
'unsigned int' should be clearer than 'unsigned'. Signed-off-by: Jilin Yuan <yuanjilin@cdjrlc.com> Link: https://lore.kernel.org/r/20220825124134.30242-1-yuanjilin@cdjrlc.com Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
9194e0f88a
commit
1ebfe7e361
@ -81,11 +81,11 @@ struct npcm7xx_gpio {
|
||||
int irq;
|
||||
struct irq_chip irq_chip;
|
||||
u32 pinctrl_id;
|
||||
int (*direction_input)(struct gpio_chip *chip, unsigned offset);
|
||||
int (*direction_output)(struct gpio_chip *chip, unsigned offset,
|
||||
int (*direction_input)(struct gpio_chip *chip, unsigned int offset);
|
||||
int (*direction_output)(struct gpio_chip *chip, unsigned int offset,
|
||||
int value);
|
||||
int (*request)(struct gpio_chip *chip, unsigned offset);
|
||||
void (*free)(struct gpio_chip *chip, unsigned offset);
|
||||
int (*request)(struct gpio_chip *chip, unsigned int offset);
|
||||
void (*free)(struct gpio_chip *chip, unsigned int offset);
|
||||
};
|
||||
|
||||
struct npcm7xx_pinctrl {
|
||||
|
Loading…
Reference in New Issue
Block a user