Skip to content

Commit 8af3a0b

Browse files
rleonbrgl
authored andcommitted
gpio: vf610: fix compilation error
Fix compilation error by explicitly adding the missing include. drivers/gpio/gpio-vf610.c: In function ‘vf610_gpio_direction_input’: drivers/gpio/gpio-vf610.c:120:9: error: implicit declaration of function ‘pinctrl_gpio_direction_input’; did you mean ‘vf610_gpio_direction_input’? [-Werror=implicit-function-declaration] 120 | return pinctrl_gpio_direction_input(chip->base + gpio); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ | vf610_gpio_direction_input Fixes: 30a35c0 ("gpio: vf610: drop the SOC_VF610 dependency for GPIO_VF610") Signed-off-by: Leon Romanovsky <leonro@nvidia.com> Signed-off-by: Tariq Toukan <tariqt@nvidia.com> Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com> Reviewed-by: Peng Fan <peng.fan@nxp.com> Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
1 parent 03c765b commit 8af3a0b

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

drivers/gpio/gpio-vf610.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#include <linux/of.h>
2020
#include <linux/of_device.h>
2121
#include <linux/of_irq.h>
22+
#include <linux/pinctrl/consumer.h>
2223

2324
#define VF610_GPIO_PER_PORT 32
2425

0 commit comments

Comments
 (0)