linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 01/12] gpio: 74x174: Include proper headers
@ 2018-01-19  6:40 Linus Walleij
  2018-01-19  6:40 ` [PATCH 02/12] gpio: adp5520: Include proper header Linus Walleij
                   ` (10 more replies)
  0 siblings, 11 replies; 13+ messages in thread
From: Linus Walleij @ 2018-01-19  6:40 UTC (permalink / raw)
  To: linux-gpio; +Cc: Linus Walleij

This driver has no business including <linux/gpio.h> or
<linux/of_gpio.h>. Cut them and include <linux/gpio/driver.h>
and <linux/gpio/consumer.h> which is it they really needs.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 drivers/gpio/gpio-74x164.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/gpio/gpio-74x164.c b/drivers/gpio/gpio-74x164.c
index 6b535ec858cc..3c25f504a784 100644
--- a/drivers/gpio/gpio-74x164.c
+++ b/drivers/gpio/gpio-74x164.c
@@ -9,12 +9,11 @@
  *  published by the Free Software Foundation.
  */
 
-#include <linux/gpio/consumer.h>
 #include <linux/init.h>
 #include <linux/mutex.h>
 #include <linux/spi/spi.h>
-#include <linux/gpio.h>
-#include <linux/of_gpio.h>
+#include <linux/gpio/driver.h>
+#include <linux/gpio/consumer.h>
 #include <linux/slab.h>
 #include <linux/module.h>
 
-- 
2.14.3


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 02/12] gpio: adp5520: Include proper header
  2018-01-19  6:40 [PATCH 01/12] gpio: 74x174: Include proper headers Linus Walleij
@ 2018-01-19  6:40 ` Linus Walleij
  2018-01-19  6:40 ` [PATCH 03/12] gpio: adp5588: " Linus Walleij
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 13+ messages in thread
From: Linus Walleij @ 2018-01-19  6:40 UTC (permalink / raw)
  To: linux-gpio; +Cc: Linus Walleij

This driver has no business including <linux/gpio.h>, it is a
driver so include <linux/gpio/driver.h>.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 drivers/gpio/gpio-adp5520.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/gpio/gpio-adp5520.c b/drivers/gpio/gpio-adp5520.c
index abf199609546..21452622d954 100644
--- a/drivers/gpio/gpio-adp5520.c
+++ b/drivers/gpio/gpio-adp5520.c
@@ -12,8 +12,7 @@
 #include <linux/init.h>
 #include <linux/platform_device.h>
 #include <linux/mfd/adp5520.h>
-
-#include <linux/gpio.h>
+#include <linux/gpio/driver.h>
 
 struct adp5520_gpio {
 	struct device *master;
-- 
2.14.3


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 03/12] gpio: adp5588: Include proper header
  2018-01-19  6:40 [PATCH 01/12] gpio: 74x174: Include proper headers Linus Walleij
  2018-01-19  6:40 ` [PATCH 02/12] gpio: adp5520: Include proper header Linus Walleij
@ 2018-01-19  6:40 ` Linus Walleij
  2018-01-19  6:40 ` [PATCH 04/12] gpio: altera: Include GPIO driver header Linus Walleij
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 13+ messages in thread
From: Linus Walleij @ 2018-01-19  6:40 UTC (permalink / raw)
  To: linux-gpio; +Cc: Linus Walleij

This driver has no business including <linux/gpio.h>, it is a
driver so include <linux/gpio/driver.h>.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 drivers/gpio/gpio-adp5588.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-adp5588.c b/drivers/gpio/gpio-adp5588.c
index e717f8dc3966..3530ccd17e04 100644
--- a/drivers/gpio/gpio-adp5588.c
+++ b/drivers/gpio/gpio-adp5588.c
@@ -12,7 +12,7 @@
 #include <linux/slab.h>
 #include <linux/init.h>
 #include <linux/i2c.h>
-#include <linux/gpio.h>
+#include <linux/gpio/driver.h>
 #include <linux/interrupt.h>
 #include <linux/irq.h>
 
-- 
2.14.3


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 04/12] gpio: altera: Include GPIO driver header
  2018-01-19  6:40 [PATCH 01/12] gpio: 74x174: Include proper headers Linus Walleij
  2018-01-19  6:40 ` [PATCH 02/12] gpio: adp5520: Include proper header Linus Walleij
  2018-01-19  6:40 ` [PATCH 03/12] gpio: adp5588: " Linus Walleij
@ 2018-01-19  6:40 ` Linus Walleij
  2018-01-19  6:40 ` [PATCH 05/12] gpio: amd8111: Include proper header Linus Walleij
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 13+ messages in thread
From: Linus Walleij @ 2018-01-19  6:40 UTC (permalink / raw)
  To: linux-gpio; +Cc: Linus Walleij

This is a GPIO driver so it should definately include
<linux/gpio/driver.h>. We want to get rid of <linux/of_gpio.h>
but that will take a bit longer.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 drivers/gpio/gpio-altera.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-altera.c b/drivers/gpio/gpio-altera.c
index 8e76d390e653..8c3ff6e2366f 100644
--- a/drivers/gpio/gpio-altera.c
+++ b/drivers/gpio/gpio-altera.c
@@ -18,7 +18,8 @@
 
 #include <linux/io.h>
 #include <linux/module.h>
-#include <linux/of_gpio.h>
+#include <linux/gpio/driver.h>
+#include <linux/of_gpio.h> /* For of_mm_gpio_chip */
 #include <linux/platform_device.h>
 
 #define ALTERA_GPIO_MAX_NGPIO		32
-- 
2.14.3


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 05/12] gpio: amd8111: Include proper header
  2018-01-19  6:40 [PATCH 01/12] gpio: 74x174: Include proper headers Linus Walleij
                   ` (2 preceding siblings ...)
  2018-01-19  6:40 ` [PATCH 04/12] gpio: altera: Include GPIO driver header Linus Walleij
@ 2018-01-19  6:40 ` Linus Walleij
  2018-01-19  6:40 ` [PATCH 06/12] gpio: arizona: " Linus Walleij
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 13+ messages in thread
From: Linus Walleij @ 2018-01-19  6:40 UTC (permalink / raw)
  To: linux-gpio; +Cc: Linus Walleij

This driver has no business including <linux/gpio.h>, it is a
driver so include <linux/gpio/driver.h>.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 drivers/gpio/gpio-amd8111.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-amd8111.c b/drivers/gpio/gpio-amd8111.c
index 30ad7d7c1678..fdcebe59510d 100644
--- a/drivers/gpio/gpio-amd8111.c
+++ b/drivers/gpio/gpio-amd8111.c
@@ -28,7 +28,7 @@
 #include <linux/ioport.h>
 #include <linux/module.h>
 #include <linux/kernel.h>
-#include <linux/gpio.h>
+#include <linux/gpio/driver.h>
 #include <linux/pci.h>
 #include <linux/spinlock.h>
 
-- 
2.14.3


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 06/12] gpio: arizona: Include proper header
  2018-01-19  6:40 [PATCH 01/12] gpio: 74x174: Include proper headers Linus Walleij
                   ` (3 preceding siblings ...)
  2018-01-19  6:40 ` [PATCH 05/12] gpio: amd8111: Include proper header Linus Walleij
@ 2018-01-19  6:40 ` Linus Walleij
  2018-01-19  6:40 ` [PATCH 07/12] gpio: bcm-kona: " Linus Walleij
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 13+ messages in thread
From: Linus Walleij @ 2018-01-19  6:40 UTC (permalink / raw)
  To: linux-gpio; +Cc: Linus Walleij

This driver has no business including <linux/gpio.h>, it is a
driver so include <linux/gpio/driver.h>.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 drivers/gpio/gpio-arizona.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-arizona.c b/drivers/gpio/gpio-arizona.c
index d4e6ba0301bc..ba51ea15f379 100644
--- a/drivers/gpio/gpio-arizona.c
+++ b/drivers/gpio/gpio-arizona.c
@@ -15,7 +15,7 @@
 #include <linux/kernel.h>
 #include <linux/slab.h>
 #include <linux/module.h>
-#include <linux/gpio.h>
+#include <linux/gpio/driver.h>
 #include <linux/platform_device.h>
 #include <linux/pm_runtime.h>
 #include <linux/seq_file.h>
-- 
2.14.3


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 07/12] gpio: bcm-kona: Include proper header
  2018-01-19  6:40 [PATCH 01/12] gpio: 74x174: Include proper headers Linus Walleij
                   ` (4 preceding siblings ...)
  2018-01-19  6:40 ` [PATCH 06/12] gpio: arizona: " Linus Walleij
@ 2018-01-19  6:40 ` Linus Walleij
  2018-01-19  6:40 ` [PATCH 08/12] gpio: bt8xx: " Linus Walleij
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 13+ messages in thread
From: Linus Walleij @ 2018-01-19  6:40 UTC (permalink / raw)
  To: linux-gpio; +Cc: Linus Walleij

This driver has no business including <linux/gpio.h>, it is a
driver so include <linux/gpio/driver.h>.

GPIOF_DIR_IN/GPIOF_DIR_OUT are for consumers and should not be
used in drivers to use just 1/0 instead.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 drivers/gpio/gpio-bcm-kona.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/gpio/gpio-bcm-kona.c b/drivers/gpio/gpio-bcm-kona.c
index dfcf56ee3c61..f4c793e9a92b 100644
--- a/drivers/gpio/gpio-bcm-kona.c
+++ b/drivers/gpio/gpio-bcm-kona.c
@@ -17,7 +17,7 @@
 #include <linux/bitops.h>
 #include <linux/err.h>
 #include <linux/io.h>
-#include <linux/gpio.h>
+#include <linux/gpio/driver.h>
 #include <linux/of_device.h>
 #include <linux/of_irq.h>
 #include <linux/init.h>
@@ -127,7 +127,7 @@ static int bcm_kona_gpio_get_dir(struct gpio_chip *chip, unsigned gpio)
 	u32 val;
 
 	val = readl(reg_base + GPIO_CONTROL(gpio)) & GPIO_GPCTR0_IOTR_MASK;
-	return val ? GPIOF_DIR_IN : GPIOF_DIR_OUT;
+	return !!val;
 }
 
 static void bcm_kona_gpio_set(struct gpio_chip *chip, unsigned gpio, int value)
@@ -144,7 +144,7 @@ static void bcm_kona_gpio_set(struct gpio_chip *chip, unsigned gpio, int value)
 	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
 
 	/* this function only applies to output pin */
-	if (bcm_kona_gpio_get_dir(chip, gpio) == GPIOF_DIR_IN)
+	if (bcm_kona_gpio_get_dir(chip, gpio) == 1)
 		goto out;
 
 	reg_offset = value ? GPIO_OUT_SET(bank_id) : GPIO_OUT_CLEAR(bank_id);
@@ -170,7 +170,7 @@ static int bcm_kona_gpio_get(struct gpio_chip *chip, unsigned gpio)
 	reg_base = kona_gpio->reg_base;
 	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
 
-	if (bcm_kona_gpio_get_dir(chip, gpio) == GPIOF_DIR_IN)
+	if (bcm_kona_gpio_get_dir(chip, gpio) == 1)
 		reg_offset = GPIO_IN_STATUS(bank_id);
 	else
 		reg_offset = GPIO_OUT_STATUS(bank_id);
-- 
2.14.3


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 08/12] gpio: bt8xx: Include proper header
  2018-01-19  6:40 [PATCH 01/12] gpio: 74x174: Include proper headers Linus Walleij
                   ` (5 preceding siblings ...)
  2018-01-19  6:40 ` [PATCH 07/12] gpio: bcm-kona: " Linus Walleij
@ 2018-01-19  6:40 ` Linus Walleij
  2018-01-19  6:40 ` [PATCH 09/12] gpio: crystalcove: " Linus Walleij
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 13+ messages in thread
From: Linus Walleij @ 2018-01-19  6:40 UTC (permalink / raw)
  To: linux-gpio; +Cc: Linus Walleij

This driver has no business including <linux/gpio.h>, it is a
driver so include <linux/gpio/driver.h>.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 drivers/gpio/gpio-bt8xx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-bt8xx.c b/drivers/gpio/gpio-bt8xx.c
index acefb25e8eca..b8ec75cbd4b5 100644
--- a/drivers/gpio/gpio-bt8xx.c
+++ b/drivers/gpio/gpio-bt8xx.c
@@ -46,7 +46,7 @@
 #include <linux/module.h>
 #include <linux/pci.h>
 #include <linux/spinlock.h>
-#include <linux/gpio.h>
+#include <linux/gpio/driver.h>
 #include <linux/slab.h>
 
 /* Steal the hardware definitions from the bttv driver. */
-- 
2.14.3


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 09/12] gpio: crystalcove: Include proper header
  2018-01-19  6:40 [PATCH 01/12] gpio: 74x174: Include proper headers Linus Walleij
                   ` (6 preceding siblings ...)
  2018-01-19  6:40 ` [PATCH 08/12] gpio: bt8xx: " Linus Walleij
@ 2018-01-19  6:40 ` Linus Walleij
  2018-01-19  6:40 ` [PATCH 10/12] gpio: cs5535: " Linus Walleij
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 13+ messages in thread
From: Linus Walleij @ 2018-01-19  6:40 UTC (permalink / raw)
  To: linux-gpio; +Cc: Linus Walleij

This driver has no business including <linux/gpio.h>, it is a
driver so include <linux/gpio/driver.h>.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 drivers/gpio/gpio-crystalcove.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-crystalcove.c b/drivers/gpio/gpio-crystalcove.c
index b6f0f729656c..58531d8b8c6e 100644
--- a/drivers/gpio/gpio-crystalcove.c
+++ b/drivers/gpio/gpio-crystalcove.c
@@ -18,7 +18,7 @@
 #include <linux/interrupt.h>
 #include <linux/module.h>
 #include <linux/platform_device.h>
-#include <linux/gpio.h>
+#include <linux/gpio/driver.h>
 #include <linux/seq_file.h>
 #include <linux/bitops.h>
 #include <linux/regmap.h>
-- 
2.14.3


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 10/12] gpio: cs5535: Include proper header
  2018-01-19  6:40 [PATCH 01/12] gpio: 74x174: Include proper headers Linus Walleij
                   ` (7 preceding siblings ...)
  2018-01-19  6:40 ` [PATCH 09/12] gpio: crystalcove: " Linus Walleij
@ 2018-01-19  6:40 ` Linus Walleij
  2018-01-19  6:40 ` [PATCH 11/12] gpio: da905x: " Linus Walleij
  2018-01-19  6:40 ` [PATCH 12/12] gpio: davinci: " Linus Walleij
  10 siblings, 0 replies; 13+ messages in thread
From: Linus Walleij @ 2018-01-19  6:40 UTC (permalink / raw)
  To: linux-gpio; +Cc: Linus Walleij

This driver has no business including <linux/gpio.h>, it is a
driver so include <linux/gpio/driver.h>.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 drivers/gpio/gpio-cs5535.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-cs5535.c b/drivers/gpio/gpio-cs5535.c
index 90278b19aa0e..8814c8f47e57 100644
--- a/drivers/gpio/gpio-cs5535.c
+++ b/drivers/gpio/gpio-cs5535.c
@@ -12,7 +12,7 @@
 #include <linux/spinlock.h>
 #include <linux/module.h>
 #include <linux/platform_device.h>
-#include <linux/gpio.h>
+#include <linux/gpio/driver.h>
 #include <linux/io.h>
 #include <linux/cs5535.h>
 #include <asm/msr.h>
-- 
2.14.3


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 11/12] gpio: da905x: Include proper header
  2018-01-19  6:40 [PATCH 01/12] gpio: 74x174: Include proper headers Linus Walleij
                   ` (8 preceding siblings ...)
  2018-01-19  6:40 ` [PATCH 10/12] gpio: cs5535: " Linus Walleij
@ 2018-01-19  6:40 ` Linus Walleij
  2018-01-19  6:40 ` [PATCH 12/12] gpio: davinci: " Linus Walleij
  10 siblings, 0 replies; 13+ messages in thread
From: Linus Walleij @ 2018-01-19  6:40 UTC (permalink / raw)
  To: linux-gpio; +Cc: Linus Walleij

These drivers has no business including <linux/gpio.h>, they
are drivers so include <linux/gpio/driver.h>.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 drivers/gpio/gpio-da9052.c | 2 +-
 drivers/gpio/gpio-da9055.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpio/gpio-da9052.c b/drivers/gpio/gpio-da9052.c
index dd8977cf3e85..b6d3e997eb26 100644
--- a/drivers/gpio/gpio-da9052.c
+++ b/drivers/gpio/gpio-da9052.c
@@ -15,7 +15,7 @@
 #include <linux/fs.h>
 #include <linux/uaccess.h>
 #include <linux/platform_device.h>
-#include <linux/gpio.h>
+#include <linux/gpio/driver.h>
 #include <linux/syscalls.h>
 #include <linux/seq_file.h>
 
diff --git a/drivers/gpio/gpio-da9055.c b/drivers/gpio/gpio-da9055.c
index 82053b52cba0..2f1b5d23b10c 100644
--- a/drivers/gpio/gpio-da9055.c
+++ b/drivers/gpio/gpio-da9055.c
@@ -13,7 +13,7 @@
  */
 #include <linux/module.h>
 #include <linux/platform_device.h>
-#include <linux/gpio.h>
+#include <linux/gpio/driver.h>
 
 #include <linux/mfd/da9055/core.h>
 #include <linux/mfd/da9055/reg.h>
-- 
2.14.3


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 12/12] gpio: davinci: Include proper header
  2018-01-19  6:40 [PATCH 01/12] gpio: 74x174: Include proper headers Linus Walleij
                   ` (9 preceding siblings ...)
  2018-01-19  6:40 ` [PATCH 11/12] gpio: da905x: " Linus Walleij
@ 2018-01-19  6:40 ` Linus Walleij
  2018-01-22  8:31   ` Keerthy
  10 siblings, 1 reply; 13+ messages in thread
From: Linus Walleij @ 2018-01-19  6:40 UTC (permalink / raw)
  To: linux-gpio; +Cc: Linus Walleij

This driver has no business including <linux/gpio.h>, it is a
driver so include <linux/gpio/driver.h>.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 drivers/gpio/gpio-davinci.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-davinci.c b/drivers/gpio/gpio-davinci.c
index f75d8443ecaf..34fc0a167b7c 100644
--- a/drivers/gpio/gpio-davinci.c
+++ b/drivers/gpio/gpio-davinci.c
@@ -9,7 +9,7 @@
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
  */
-#include <linux/gpio.h>
+#include <linux/gpio/driver.h>
 #include <linux/errno.h>
 #include <linux/kernel.h>
 #include <linux/clk.h>
-- 
2.14.3


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* Re: [PATCH 12/12] gpio: davinci: Include proper header
  2018-01-19  6:40 ` [PATCH 12/12] gpio: davinci: " Linus Walleij
@ 2018-01-22  8:31   ` Keerthy
  0 siblings, 0 replies; 13+ messages in thread
From: Keerthy @ 2018-01-22  8:31 UTC (permalink / raw)
  To: Linus Walleij, linux-gpio



On Friday 19 January 2018 12:10 PM, Linus Walleij wrote:
> This driver has no business including <linux/gpio.h>, it is a
> driver so include <linux/gpio/driver.h>.

Acked-by: Keerthy <j-keerthy@ti.com>

Compile tested for keystone_defconfig and davinci_all_defconfig.

> 
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
>  drivers/gpio/gpio-davinci.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpio/gpio-davinci.c b/drivers/gpio/gpio-davinci.c
> index f75d8443ecaf..34fc0a167b7c 100644
> --- a/drivers/gpio/gpio-davinci.c
> +++ b/drivers/gpio/gpio-davinci.c
> @@ -9,7 +9,7 @@
>   * the Free Software Foundation; either version 2 of the License, or
>   * (at your option) any later version.
>   */
> -#include <linux/gpio.h>
> +#include <linux/gpio/driver.h>
>  #include <linux/errno.h>
>  #include <linux/kernel.h>
>  #include <linux/clk.h>
> 

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2018-01-22  8:31 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-19  6:40 [PATCH 01/12] gpio: 74x174: Include proper headers Linus Walleij
2018-01-19  6:40 ` [PATCH 02/12] gpio: adp5520: Include proper header Linus Walleij
2018-01-19  6:40 ` [PATCH 03/12] gpio: adp5588: " Linus Walleij
2018-01-19  6:40 ` [PATCH 04/12] gpio: altera: Include GPIO driver header Linus Walleij
2018-01-19  6:40 ` [PATCH 05/12] gpio: amd8111: Include proper header Linus Walleij
2018-01-19  6:40 ` [PATCH 06/12] gpio: arizona: " Linus Walleij
2018-01-19  6:40 ` [PATCH 07/12] gpio: bcm-kona: " Linus Walleij
2018-01-19  6:40 ` [PATCH 08/12] gpio: bt8xx: " Linus Walleij
2018-01-19  6:40 ` [PATCH 09/12] gpio: crystalcove: " Linus Walleij
2018-01-19  6:40 ` [PATCH 10/12] gpio: cs5535: " Linus Walleij
2018-01-19  6:40 ` [PATCH 11/12] gpio: da905x: " Linus Walleij
2018-01-19  6:40 ` [PATCH 12/12] gpio: davinci: " Linus Walleij
2018-01-22  8:31   ` Keerthy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).