diff mbox series

[2/2,v3] pinctrl: rza2: Include the appropriate headers

Message ID 20190820135955.14391-2-linus.walleij@linaro.org
State Accepted
Commit 0a6864274e4166cde21f26193350c7fcd9716ef5
Headers show
Series [1/2,v3] pinctrl: rza2: Drop driver use of consumer flags | expand

Commit Message

Linus Walleij Aug. 20, 2019, 1:59 p.m. UTC
This driver is implementing a GPIO driver so include
<linux/gpio/driver.h> and not the legacy API <linux/gpio.h>.
When testing it turns out it also relies on implicit
inclusion of <linux/io.h> (readw etc) so make sure to
include that as well.

Cc: Chris Brandt <chris.brandt@renesas.com>
Cc: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

---
ChangeLov v2->v3:
- Fix one more instance.
- Test compile properly.
ChangeLog v1->v2:
- Remove the use of GPIOF_* consumer flags in the driver.
---
 drivers/pinctrl/pinctrl-rza2.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

-- 
2.21.0

Comments

Geert Uytterhoeven Aug. 21, 2019, 7:45 a.m. UTC | #1
On Tue, Aug 20, 2019 at 4:00 PM Linus Walleij <linus.walleij@linaro.org> wrote:
> This driver is implementing a GPIO driver so include

> <linux/gpio/driver.h> and not the legacy API <linux/gpio.h>.

> When testing it turns out it also relies on implicit

> inclusion of <linux/io.h> (readw etc) so make sure to

> include that as well.

>

> Cc: Chris Brandt <chris.brandt@renesas.com>

> Cc: Geert Uytterhoeven <geert+renesas@glider.be>

> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>


Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>

i.e. will queue in sh-pfc-for-v5.4.

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds
diff mbox series

Patch

diff --git a/drivers/pinctrl/pinctrl-rza2.c b/drivers/pinctrl/pinctrl-rza2.c
index b0806667e94c..3be1d833bf25 100644
--- a/drivers/pinctrl/pinctrl-rza2.c
+++ b/drivers/pinctrl/pinctrl-rza2.c
@@ -11,7 +11,8 @@ 
  */
 
 #include <linux/bitops.h>
-#include <linux/gpio.h>
+#include <linux/gpio/driver.h>
+#include <linux/io.h>
 #include <linux/module.h>
 #include <linux/of_device.h>
 #include <linux/pinctrl/pinmux.h>