All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: mt7621-gpio: move out of staging
@ 2018-06-01 12:02 ` Sergio Paracuellos
  0 siblings, 0 replies; 13+ messages in thread
From: Sergio Paracuellos @ 2018-06-01 12:02 UTC (permalink / raw)
  To: gregkh; +Cc: neil, linux-gpio, linus.walleij, driverdev-devel

Move the mt7621-gpio driver out of staging and into mainline

Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
---
 .../devicetree/bindings/gpio}/mediatek,mt7621-gpio.txt             | 0
 drivers/gpio/Kconfig                                               | 7 +++++++
 drivers/gpio/Makefile                                              | 1 +
 drivers/{staging/mt7621-gpio => gpio}/gpio-mt7621.c                | 0
 drivers/staging/Kconfig                                            | 2 --
 drivers/staging/Makefile                                           | 1 -
 drivers/staging/mt7621-gpio/Kconfig                                | 6 ------
 drivers/staging/mt7621-gpio/Makefile                               | 3 ---
 drivers/staging/mt7621-gpio/TODO                                   | 3 ---
 9 files changed, 8 insertions(+), 15 deletions(-)
 rename {drivers/staging/mt7621-gpio => Documentation/devicetree/bindings/gpio}/mediatek,mt7621-gpio.txt (100%)
 rename drivers/{staging/mt7621-gpio => gpio}/gpio-mt7621.c (100%)
 delete mode 100644 drivers/staging/mt7621-gpio/Kconfig
 delete mode 100644 drivers/staging/mt7621-gpio/Makefile
 delete mode 100644 drivers/staging/mt7621-gpio/TODO

diff --git a/drivers/staging/mt7621-gpio/mediatek,mt7621-gpio.txt b/Documentation/devicetree/bindings/gpio/mediatek,mt7621-gpio.txt
similarity index 100%
rename from drivers/staging/mt7621-gpio/mediatek,mt7621-gpio.txt
rename to Documentation/devicetree/bindings/gpio/mediatek,mt7621-gpio.txt
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
index b960f6f..280c0a0 100644
--- a/drivers/gpio/Kconfig
+++ b/drivers/gpio/Kconfig
@@ -347,6 +347,13 @@ config GPIO_MPC8XXX
 	  Say Y here if you're going to use hardware that connects to the
 	  MPC512x/831x/834x/837x/8572/8610/QorIQ GPIOs.
 
+config GPIO_MT7621
+	bool "Mediatek GPIO Support"
+	depends on SOC_MT7620 || SOC_MT7621
+	select GPIOLIB_IRQCHIP
+	help
+	  Say yes here to support the Mediatek SoC GPIO device
+
 config GPIO_MVEBU
 	def_bool y
 	depends on PLAT_ORION || ARCH_MVEBU
diff --git a/drivers/gpio/Makefile b/drivers/gpio/Makefile
index 1324c8f..03647ae 100644
--- a/drivers/gpio/Makefile
+++ b/drivers/gpio/Makefile
@@ -88,6 +88,7 @@ obj-$(CONFIG_GPIO_MOCKUP)      += gpio-mockup.o
 obj-$(CONFIG_GPIO_MPC5200)	+= gpio-mpc5200.o
 obj-$(CONFIG_GPIO_MPC8XXX)	+= gpio-mpc8xxx.o
 obj-$(CONFIG_GPIO_MSIC)		+= gpio-msic.o
+obj-$(CONFIG_GPIO_MT7621)	+= gpio-mt7621.o
 obj-$(CONFIG_GPIO_MVEBU)        += gpio-mvebu.o
 obj-$(CONFIG_GPIO_MXC)		+= gpio-mxc.o
 obj-$(CONFIG_GPIO_MXS)		+= gpio-mxs.o
diff --git a/drivers/staging/mt7621-gpio/gpio-mt7621.c b/drivers/gpio/gpio-mt7621.c
similarity index 100%
rename from drivers/staging/mt7621-gpio/gpio-mt7621.c
rename to drivers/gpio/gpio-mt7621.c
diff --git a/drivers/staging/Kconfig b/drivers/staging/Kconfig
index d5926f0..3f0cbbd 100644
--- a/drivers/staging/Kconfig
+++ b/drivers/staging/Kconfig
@@ -120,8 +120,6 @@ source "drivers/staging/pi433/Kconfig"
 
 source "drivers/staging/mt7621-pinctrl/Kconfig"
 
-source "drivers/staging/mt7621-gpio/Kconfig"
-
 source "drivers/staging/mt7621-spi/Kconfig"
 
 source "drivers/staging/mt7621-dma/Kconfig"
diff --git a/drivers/staging/Makefile b/drivers/staging/Makefile
index 919753c..42a1268 100644
--- a/drivers/staging/Makefile
+++ b/drivers/staging/Makefile
@@ -51,7 +51,6 @@ obj-$(CONFIG_DRM_VBOXVIDEO)	+= vboxvideo/
 obj-$(CONFIG_PI433)		+= pi433/
 obj-$(CONFIG_SOC_MT7621)	+= mt7621-pci/
 obj-$(CONFIG_SOC_MT7621)	+= mt7621-pinctrl/
-obj-$(CONFIG_SOC_MT7621)	+= mt7621-gpio/
 obj-$(CONFIG_SOC_MT7621)	+= mt7621-spi/
 obj-$(CONFIG_SOC_MT7621)	+= mt7621-dma/
 obj-$(CONFIG_SOC_MT7621)	+= mt7621-mmc/
diff --git a/drivers/staging/mt7621-gpio/Kconfig b/drivers/staging/mt7621-gpio/Kconfig
deleted file mode 100644
index c741ec3..0000000
--- a/drivers/staging/mt7621-gpio/Kconfig
+++ /dev/null
@@ -1,6 +0,0 @@
-config GPIO_MT7621
-	bool "Mediatek GPIO Support"
-	depends on SOC_MT7620 || SOC_MT7621
-	select ARCH_REQUIRE_GPIOLIB
-	help
-	  Say yes here to support the Mediatek SoC GPIO device
diff --git a/drivers/staging/mt7621-gpio/Makefile b/drivers/staging/mt7621-gpio/Makefile
deleted file mode 100644
index e269ab1..0000000
--- a/drivers/staging/mt7621-gpio/Makefile
+++ /dev/null
@@ -1,3 +0,0 @@
-obj-$(CONFIG_GPIO_MT7621)	+= gpio-mt7621.o
-
-ccflags-y += -I$(srctree)/$(src)/include
diff --git a/drivers/staging/mt7621-gpio/TODO b/drivers/staging/mt7621-gpio/TODO
deleted file mode 100644
index 674930a..0000000
--- a/drivers/staging/mt7621-gpio/TODO
+++ /dev/null
@@ -1,3 +0,0 @@
-- general code review and clean up
-
-Cc:  NeilBrown <neil@brown.name>
-- 
2.7.4

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

* [PATCH] staging: mt7621-gpio: move out of staging
@ 2018-06-01 12:02 ` Sergio Paracuellos
  0 siblings, 0 replies; 13+ messages in thread
From: Sergio Paracuellos @ 2018-06-01 12:02 UTC (permalink / raw)
  To: gregkh; +Cc: neil, driverdev-devel, linux-gpio, linus.walleij

Move the mt7621-gpio driver out of staging and into mainline

Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
---
 .../devicetree/bindings/gpio}/mediatek,mt7621-gpio.txt             | 0
 drivers/gpio/Kconfig                                               | 7 +++++++
 drivers/gpio/Makefile                                              | 1 +
 drivers/{staging/mt7621-gpio => gpio}/gpio-mt7621.c                | 0
 drivers/staging/Kconfig                                            | 2 --
 drivers/staging/Makefile                                           | 1 -
 drivers/staging/mt7621-gpio/Kconfig                                | 6 ------
 drivers/staging/mt7621-gpio/Makefile                               | 3 ---
 drivers/staging/mt7621-gpio/TODO                                   | 3 ---
 9 files changed, 8 insertions(+), 15 deletions(-)
 rename {drivers/staging/mt7621-gpio => Documentation/devicetree/bindings/gpio}/mediatek,mt7621-gpio.txt (100%)
 rename drivers/{staging/mt7621-gpio => gpio}/gpio-mt7621.c (100%)
 delete mode 100644 drivers/staging/mt7621-gpio/Kconfig
 delete mode 100644 drivers/staging/mt7621-gpio/Makefile
 delete mode 100644 drivers/staging/mt7621-gpio/TODO

diff --git a/drivers/staging/mt7621-gpio/mediatek,mt7621-gpio.txt b/Documentation/devicetree/bindings/gpio/mediatek,mt7621-gpio.txt
similarity index 100%
rename from drivers/staging/mt7621-gpio/mediatek,mt7621-gpio.txt
rename to Documentation/devicetree/bindings/gpio/mediatek,mt7621-gpio.txt
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
index b960f6f..280c0a0 100644
--- a/drivers/gpio/Kconfig
+++ b/drivers/gpio/Kconfig
@@ -347,6 +347,13 @@ config GPIO_MPC8XXX
 	  Say Y here if you're going to use hardware that connects to the
 	  MPC512x/831x/834x/837x/8572/8610/QorIQ GPIOs.
 
+config GPIO_MT7621
+	bool "Mediatek GPIO Support"
+	depends on SOC_MT7620 || SOC_MT7621
+	select GPIOLIB_IRQCHIP
+	help
+	  Say yes here to support the Mediatek SoC GPIO device
+
 config GPIO_MVEBU
 	def_bool y
 	depends on PLAT_ORION || ARCH_MVEBU
diff --git a/drivers/gpio/Makefile b/drivers/gpio/Makefile
index 1324c8f..03647ae 100644
--- a/drivers/gpio/Makefile
+++ b/drivers/gpio/Makefile
@@ -88,6 +88,7 @@ obj-$(CONFIG_GPIO_MOCKUP)      += gpio-mockup.o
 obj-$(CONFIG_GPIO_MPC5200)	+= gpio-mpc5200.o
 obj-$(CONFIG_GPIO_MPC8XXX)	+= gpio-mpc8xxx.o
 obj-$(CONFIG_GPIO_MSIC)		+= gpio-msic.o
+obj-$(CONFIG_GPIO_MT7621)	+= gpio-mt7621.o
 obj-$(CONFIG_GPIO_MVEBU)        += gpio-mvebu.o
 obj-$(CONFIG_GPIO_MXC)		+= gpio-mxc.o
 obj-$(CONFIG_GPIO_MXS)		+= gpio-mxs.o
diff --git a/drivers/staging/mt7621-gpio/gpio-mt7621.c b/drivers/gpio/gpio-mt7621.c
similarity index 100%
rename from drivers/staging/mt7621-gpio/gpio-mt7621.c
rename to drivers/gpio/gpio-mt7621.c
diff --git a/drivers/staging/Kconfig b/drivers/staging/Kconfig
index d5926f0..3f0cbbd 100644
--- a/drivers/staging/Kconfig
+++ b/drivers/staging/Kconfig
@@ -120,8 +120,6 @@ source "drivers/staging/pi433/Kconfig"
 
 source "drivers/staging/mt7621-pinctrl/Kconfig"
 
-source "drivers/staging/mt7621-gpio/Kconfig"
-
 source "drivers/staging/mt7621-spi/Kconfig"
 
 source "drivers/staging/mt7621-dma/Kconfig"
diff --git a/drivers/staging/Makefile b/drivers/staging/Makefile
index 919753c..42a1268 100644
--- a/drivers/staging/Makefile
+++ b/drivers/staging/Makefile
@@ -51,7 +51,6 @@ obj-$(CONFIG_DRM_VBOXVIDEO)	+= vboxvideo/
 obj-$(CONFIG_PI433)		+= pi433/
 obj-$(CONFIG_SOC_MT7621)	+= mt7621-pci/
 obj-$(CONFIG_SOC_MT7621)	+= mt7621-pinctrl/
-obj-$(CONFIG_SOC_MT7621)	+= mt7621-gpio/
 obj-$(CONFIG_SOC_MT7621)	+= mt7621-spi/
 obj-$(CONFIG_SOC_MT7621)	+= mt7621-dma/
 obj-$(CONFIG_SOC_MT7621)	+= mt7621-mmc/
diff --git a/drivers/staging/mt7621-gpio/Kconfig b/drivers/staging/mt7621-gpio/Kconfig
deleted file mode 100644
index c741ec3..0000000
--- a/drivers/staging/mt7621-gpio/Kconfig
+++ /dev/null
@@ -1,6 +0,0 @@
-config GPIO_MT7621
-	bool "Mediatek GPIO Support"
-	depends on SOC_MT7620 || SOC_MT7621
-	select ARCH_REQUIRE_GPIOLIB
-	help
-	  Say yes here to support the Mediatek SoC GPIO device
diff --git a/drivers/staging/mt7621-gpio/Makefile b/drivers/staging/mt7621-gpio/Makefile
deleted file mode 100644
index e269ab1..0000000
--- a/drivers/staging/mt7621-gpio/Makefile
+++ /dev/null
@@ -1,3 +0,0 @@
-obj-$(CONFIG_GPIO_MT7621)	+= gpio-mt7621.o
-
-ccflags-y += -I$(srctree)/$(src)/include
diff --git a/drivers/staging/mt7621-gpio/TODO b/drivers/staging/mt7621-gpio/TODO
deleted file mode 100644
index 674930a..0000000
--- a/drivers/staging/mt7621-gpio/TODO
+++ /dev/null
@@ -1,3 +0,0 @@
-- general code review and clean up
-
-Cc:  NeilBrown <neil@brown.name>
-- 
2.7.4

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

* Re: [PATCH] staging: mt7621-gpio: move out of staging
  2018-06-01 12:02 ` Sergio Paracuellos
@ 2018-06-01 18:13   ` Greg KH
  -1 siblings, 0 replies; 13+ messages in thread
From: Greg KH @ 2018-06-01 18:13 UTC (permalink / raw)
  To: Sergio Paracuellos; +Cc: neil, linux-gpio, linus.walleij, driverdev-devel

On Fri, Jun 01, 2018 at 02:02:50PM +0200, Sergio Paracuellos wrote:
> Move the mt7621-gpio driver out of staging and into mainline
> 
> Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
> ---
>  .../devicetree/bindings/gpio}/mediatek,mt7621-gpio.txt             | 0
>  drivers/gpio/Kconfig                                               | 7 +++++++
>  drivers/gpio/Makefile                                              | 1 +
>  drivers/{staging/mt7621-gpio => gpio}/gpio-mt7621.c                | 0
>  drivers/staging/Kconfig                                            | 2 --
>  drivers/staging/Makefile                                           | 1 -
>  drivers/staging/mt7621-gpio/Kconfig                                | 6 ------
>  drivers/staging/mt7621-gpio/Makefile                               | 3 ---
>  drivers/staging/mt7621-gpio/TODO                                   | 3 ---

I suggest you submit this as a new driver to the gpio maintainer and
developers and then if/when it is merged into that tree, we can then
delete the staging tree version.  That makes it easier for the gpio
developers to review it and makes any cross-tree merge issues go away.

thanks,

greg k-h

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

* Re: [PATCH] staging: mt7621-gpio: move out of staging
@ 2018-06-01 18:13   ` Greg KH
  0 siblings, 0 replies; 13+ messages in thread
From: Greg KH @ 2018-06-01 18:13 UTC (permalink / raw)
  To: Sergio Paracuellos; +Cc: neil, linux-gpio, linus.walleij, driverdev-devel

On Fri, Jun 01, 2018 at 02:02:50PM +0200, Sergio Paracuellos wrote:
> Move the mt7621-gpio driver out of staging and into mainline
> 
> Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
> ---
>  .../devicetree/bindings/gpio}/mediatek,mt7621-gpio.txt             | 0
>  drivers/gpio/Kconfig                                               | 7 +++++++
>  drivers/gpio/Makefile                                              | 1 +
>  drivers/{staging/mt7621-gpio => gpio}/gpio-mt7621.c                | 0
>  drivers/staging/Kconfig                                            | 2 --
>  drivers/staging/Makefile                                           | 1 -
>  drivers/staging/mt7621-gpio/Kconfig                                | 6 ------
>  drivers/staging/mt7621-gpio/Makefile                               | 3 ---
>  drivers/staging/mt7621-gpio/TODO                                   | 3 ---

I suggest you submit this as a new driver to the gpio maintainer and
developers and then if/when it is merged into that tree, we can then
delete the staging tree version.  That makes it easier for the gpio
developers to review it and makes any cross-tree merge issues go away.

thanks,

greg k-h
_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

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

* Re: [PATCH] staging: mt7621-gpio: move out of staging
  2018-06-01 18:13   ` Greg KH
@ 2018-06-01 19:02     ` Sergio Paracuellos
  -1 siblings, 0 replies; 13+ messages in thread
From: Sergio Paracuellos @ 2018-06-01 19:02 UTC (permalink / raw)
  To: Greg KH; +Cc: NeilBrown, linux-gpio, linus.walleij, driverdev-devel

> I suggest you submit this as a new driver to the gpio maintainer and
> developers and then if/when it is merged into that tree, we can then
> delete the staging tree version.  That makes it easier for the gpio
> developers to review it and makes any cross-tree merge issues go away.

I see. Ok, I'll send this in the way you are pointing out here
hopefully tomorrow morning :-)

Thanks, Greg,

>
> thanks,
>
> greg k-h

Best regards,
    Sergio Paracuellos

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

* Re: [PATCH] staging: mt7621-gpio: move out of staging
@ 2018-06-01 19:02     ` Sergio Paracuellos
  0 siblings, 0 replies; 13+ messages in thread
From: Sergio Paracuellos @ 2018-06-01 19:02 UTC (permalink / raw)
  To: Greg KH; +Cc: NeilBrown, driverdev-devel, linux-gpio, linus.walleij

> I suggest you submit this as a new driver to the gpio maintainer and
> developers and then if/when it is merged into that tree, we can then
> delete the staging tree version.  That makes it easier for the gpio
> developers to review it and makes any cross-tree merge issues go away.

I see. Ok, I'll send this in the way you are pointing out here
hopefully tomorrow morning :-)

Thanks, Greg,

>
> thanks,
>
> greg k-h

Best regards,
    Sergio Paracuellos

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

* Re: [PATCH] staging: mt7621-gpio: move out of staging
  2018-06-01 19:02     ` Sergio Paracuellos
  (?)
@ 2018-06-01 23:30     ` NeilBrown
  2018-06-02  7:33         ` Sergio Paracuellos
  -1 siblings, 1 reply; 13+ messages in thread
From: NeilBrown @ 2018-06-01 23:30 UTC (permalink / raw)
  To: Sergio Paracuellos, Greg KH; +Cc: linux-gpio, linus.walleij, driverdev-devel


[-- Attachment #1.1: Type: text/plain, Size: 1071 bytes --]

On Fri, Jun 01 2018, Sergio Paracuellos wrote:

>> I suggest you submit this as a new driver to the gpio maintainer and
>> developers and then if/when it is merged into that tree, we can then
>> delete the staging tree version.  That makes it easier for the gpio
>> developers to review it and makes any cross-tree merge issues go away.
>
> I see. Ok, I'll send this in the way you are pointing out here
> hopefully tomorrow morning :-)

When you do, please also Cc maintainers for
  OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
to get review for the new .dts file, though get-maintainers will
probably recommend that once you have a proper patch.
Also it would be good to highlight any uncertainties we might have
to get review comments specifically on those.
Specifically we should mention that

  The functionality is presented as a single irq-chip but 3 separate
  gpio-chips, as this seemed simplest.  Is this acceptable, or does it
  need to be changed?

Please add my Reviewed-by: NeilBrown <neil@brown.name> to the patch when
you send it.

Thanks,
NeilBrown


[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

[-- Attachment #2: Type: text/plain, Size: 169 bytes --]

_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

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

* Re: [PATCH] staging: mt7621-gpio: move out of staging
  2018-06-01 23:30     ` NeilBrown
@ 2018-06-02  7:33         ` Sergio Paracuellos
  0 siblings, 0 replies; 13+ messages in thread
From: Sergio Paracuellos @ 2018-06-02  7:33 UTC (permalink / raw)
  To: NeilBrown; +Cc: Greg KH, Linus Walleij, driverdev-devel, linux-gpio

On Sat, Jun 2, 2018 at 1:30 AM, NeilBrown <neil@brown.name> wrote:
> On Fri, Jun 01 2018, Sergio Paracuellos wrote:
>
>>> I suggest you submit this as a new driver to the gpio maintainer and
>>> developers and then if/when it is merged into that tree, we can then
>>> delete the staging tree version.  That makes it easier for the gpio
>>> developers to review it and makes any cross-tree merge issues go away.
>>
>> I see. Ok, I'll send this in the way you are pointing out here
>> hopefully tomorrow morning :-)
>
> When you do, please also Cc maintainers for
>   OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
> to get review for the new .dts file, though get-maintainers will
> probably recommend that once you have a proper patch.
> Also it would be good to highlight any uncertainties we might have
> to get review comments specifically on those.
> Specifically we should mention that
>
>   The functionality is presented as a single irq-chip but 3 separate
>   gpio-chips, as this seemed simplest.  Is this acceptable, or does it
>   need to be changed?
>
> Please add my Reviewed-by: NeilBrown <neil@brown.name> to the patch when
> you send it.

Thanks for advices.

I have just sent it as you were pointing out here.

>
> Thanks,
> NeilBrown
>

Best regards,
    Sergio Paracuellos

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

* Re: [PATCH] staging: mt7621-gpio: move out of staging
@ 2018-06-02  7:33         ` Sergio Paracuellos
  0 siblings, 0 replies; 13+ messages in thread
From: Sergio Paracuellos @ 2018-06-02  7:33 UTC (permalink / raw)
  To: NeilBrown; +Cc: Greg KH, driverdev-devel, linux-gpio, Linus Walleij

On Sat, Jun 2, 2018 at 1:30 AM, NeilBrown <neil@brown.name> wrote:
> On Fri, Jun 01 2018, Sergio Paracuellos wrote:
>
>>> I suggest you submit this as a new driver to the gpio maintainer and
>>> developers and then if/when it is merged into that tree, we can then
>>> delete the staging tree version.  That makes it easier for the gpio
>>> developers to review it and makes any cross-tree merge issues go away.
>>
>> I see. Ok, I'll send this in the way you are pointing out here
>> hopefully tomorrow morning :-)
>
> When you do, please also Cc maintainers for
>   OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
> to get review for the new .dts file, though get-maintainers will
> probably recommend that once you have a proper patch.
> Also it would be good to highlight any uncertainties we might have
> to get review comments specifically on those.
> Specifically we should mention that
>
>   The functionality is presented as a single irq-chip but 3 separate
>   gpio-chips, as this seemed simplest.  Is this acceptable, or does it
>   need to be changed?
>
> Please add my Reviewed-by: NeilBrown <neil@brown.name> to the patch when
> you send it.

Thanks for advices.

I have just sent it as you were pointing out here.

>
> Thanks,
> NeilBrown
>

Best regards,
    Sergio Paracuellos

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

* Re: [PATCH] staging: mt7621-gpio: move out of staging
  2018-06-01 12:02 ` Sergio Paracuellos
@ 2018-06-04  9:09   ` Dan Carpenter
  -1 siblings, 0 replies; 13+ messages in thread
From: Dan Carpenter @ 2018-06-04  9:09 UTC (permalink / raw)
  To: Sergio Paracuellos
  Cc: neil, gregkh, linus.walleij, driverdev-devel, linux-gpio

Looks like a nice driver to me now.  Thanks!

regards,
dan carpenter

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

* Re: [PATCH] staging: mt7621-gpio: move out of staging
@ 2018-06-04  9:09   ` Dan Carpenter
  0 siblings, 0 replies; 13+ messages in thread
From: Dan Carpenter @ 2018-06-04  9:09 UTC (permalink / raw)
  To: Sergio Paracuellos
  Cc: gregkh, neil, linux-gpio, linus.walleij, driverdev-devel

Looks like a nice driver to me now.  Thanks!

regards,
dan carpenter

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

* Re: [PATCH] staging: mt7621-gpio: move out of staging
  2018-06-04  9:09   ` Dan Carpenter
@ 2018-06-05 11:19     ` Sergio Paracuellos
  -1 siblings, 0 replies; 13+ messages in thread
From: Sergio Paracuellos @ 2018-06-05 11:19 UTC (permalink / raw)
  To: Dan Carpenter; +Cc: neil, gregkh, linus.walleij, driverdev-devel, linux-gpio

On Mon, Jun 04, 2018 at 12:09:38PM +0300, Dan Carpenter wrote:
> Looks like a nice driver to me now.  Thanks!

Thanks, Dan. Let's wait for feedback from gpio and device tree guys.
> 
> regards,
> dan carpenter
> 
Best regards,
    Sergio Paracuellos

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

* Re: [PATCH] staging: mt7621-gpio: move out of staging
@ 2018-06-05 11:19     ` Sergio Paracuellos
  0 siblings, 0 replies; 13+ messages in thread
From: Sergio Paracuellos @ 2018-06-05 11:19 UTC (permalink / raw)
  To: Dan Carpenter; +Cc: gregkh, neil, linux-gpio, linus.walleij, driverdev-devel

On Mon, Jun 04, 2018 at 12:09:38PM +0300, Dan Carpenter wrote:
> Looks like a nice driver to me now.  Thanks!

Thanks, Dan. Let's wait for feedback from gpio and device tree guys.
> 
> regards,
> dan carpenter
> 
Best regards,
    Sergio Paracuellos

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

end of thread, other threads:[~2018-06-05 11:19 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-01 12:02 [PATCH] staging: mt7621-gpio: move out of staging Sergio Paracuellos
2018-06-01 12:02 ` Sergio Paracuellos
2018-06-01 18:13 ` Greg KH
2018-06-01 18:13   ` Greg KH
2018-06-01 19:02   ` Sergio Paracuellos
2018-06-01 19:02     ` Sergio Paracuellos
2018-06-01 23:30     ` NeilBrown
2018-06-02  7:33       ` Sergio Paracuellos
2018-06-02  7:33         ` Sergio Paracuellos
2018-06-04  9:09 ` Dan Carpenter
2018-06-04  9:09   ` Dan Carpenter
2018-06-05 11:19   ` Sergio Paracuellos
2018-06-05 11:19     ` Sergio Paracuellos

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.