Hi Linus On 8/20/19 1:11 PM, Linus Walleij wrote: > The ST pinctrl driver wants to provode a gpio_chip but is not > including the header for this, fix the inclusion to use the right > header. <linux/of_gpio.h> has to remain as the driver is calling > of_get_named_gpio(). > > Cc: Patrice Chotard <patrice.chotard@xxxxxx> > Cc: Maxime Coquelin <maxime.coquelin@xxxxxx> > Signed-off-by: Linus Walleij <linus.walleij@xxxxxxxxxx> > --- > ChangeLog v1->v2: > - Include <linux/of_gpio.h> again, the driver is indeed using > it. > - Add an explanatory comment. > --- > drivers/pinctrl/pinctrl-st.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/pinctrl/pinctrl-st.c b/drivers/pinctrl/pinctrl-st.c > index b9688ea548da..25236b716fb3 100644 > --- a/drivers/pinctrl/pinctrl-st.c > +++ b/drivers/pinctrl/pinctrl-st.c > @@ -12,8 +12,9 @@ > #include <linux/io.h> > #include <linux/of.h> > #include <linux/of_irq.h> > -#include <linux/of_gpio.h> > +#include <linux/of_gpio.h> /* of_get_named_gpio() */ > #include <linux/of_address.h> > +#include <linux/gpio/driver.h> > #include <linux/regmap.h> > #include <linux/mfd/syscon.h> > #include <linux/pinctrl/pinctrl.h> Reviewed-by: Patrice Chotard <patrice.chotard@xxxxxx> Thanks