We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9852d85 commit 8714625Copy full SHA for 8714625
drivers/pinctrl/renesas/pinctrl-rza2.c
@@ -16,6 +16,7 @@
16
#include <linux/module.h>
17
#include <linux/mutex.h>
18
#include <linux/of.h>
19
+#include <linux/pinctrl/consumer.h>
20
#include <linux/pinctrl/pinmux.h>
21
#include <linux/platform_device.h>
22
@@ -229,6 +230,8 @@ static const char * const rza2_gpio_names[] = {
229
230
static struct gpio_chip chip = {
231
.names = rza2_gpio_names,
232
.base = -1,
233
+ .request = pinctrl_gpio_request,
234
+ .free = pinctrl_gpio_free,
235
.get_direction = rza2_chip_get_direction,
236
.direction_input = rza2_chip_direction_input,
237
.direction_output = rza2_chip_direction_output,
0 commit comments