public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/7] gpio: bd9571mwv: normalize return value of gpio_get
@ 2026-02-18 19:06 Dmitry Torokhov
  2026-02-18 19:06 ` [PATCH 2/7] gpio: cgbc: " Dmitry Torokhov
                   ` (7 more replies)
  0 siblings, 8 replies; 11+ messages in thread
From: Dmitry Torokhov @ 2026-02-18 19:06 UTC (permalink / raw)
  To: Linus Walleij, Bartosz Golaszewski
  Cc: Marek Vasut, Thomas Richard, linux-kernel, linux-gpio

The GPIO get callback is expected to return 0 or 1 (or a negative error
code). Ensure that the value returned by bd9571mwv_gpio_get() is
normalized to the [0, 1] range.

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
 drivers/gpio/gpio-bd9571mwv.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-bd9571mwv.c b/drivers/gpio/gpio-bd9571mwv.c
index 7c95bb36511e..cc5b1746f2fe 100644
--- a/drivers/gpio/gpio-bd9571mwv.c
+++ b/drivers/gpio/gpio-bd9571mwv.c
@@ -69,7 +69,7 @@ static int bd9571mwv_gpio_get(struct gpio_chip *chip, unsigned int offset)
 	if (ret < 0)
 		return ret;
 
-	return val & BIT(offset);
+	return !!(val & BIT(offset));
 }
 
 static int bd9571mwv_gpio_set(struct gpio_chip *chip, unsigned int offset,
-- 
2.53.0.335.g19a08e0c02-goog


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

* [PATCH 2/7] gpio: cgbc: normalize return value of gpio_get
  2026-02-18 19:06 [PATCH 1/7] gpio: bd9571mwv: normalize return value of gpio_get Dmitry Torokhov
@ 2026-02-18 19:06 ` Dmitry Torokhov
  2026-02-18 19:06 ` [PATCH 3/7] gpio: da9055: " Dmitry Torokhov
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Dmitry Torokhov @ 2026-02-18 19:06 UTC (permalink / raw)
  To: Linus Walleij, Bartosz Golaszewski
  Cc: Marek Vasut, Thomas Richard, linux-kernel, linux-gpio

The GPIO get callback is expected to return 0 or 1 (or a negative error
code). Ensure that the value returned by cgbc_gpio_get() is normalized
to the [0, 1] range.

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
 drivers/gpio/gpio-cgbc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpio/gpio-cgbc.c b/drivers/gpio/gpio-cgbc.c
index 0efa1b61001a..84b5ed3c6e22 100644
--- a/drivers/gpio/gpio-cgbc.c
+++ b/drivers/gpio/gpio-cgbc.c
@@ -47,8 +47,8 @@ static int cgbc_gpio_get(struct gpio_chip *chip, unsigned int offset)
 
 	if (ret)
 		return ret;
-	else
-		return (int)(val & (u8)BIT(offset));
+
+	return !!(val & BIT(offset));
 }
 
 static int __cgbc_gpio_set(struct gpio_chip *chip, unsigned int offset,
-- 
2.53.0.335.g19a08e0c02-goog


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

* [PATCH 3/7] gpio: da9055: normalize return value of gpio_get
  2026-02-18 19:06 [PATCH 1/7] gpio: bd9571mwv: normalize return value of gpio_get Dmitry Torokhov
  2026-02-18 19:06 ` [PATCH 2/7] gpio: cgbc: " Dmitry Torokhov
@ 2026-02-18 19:06 ` Dmitry Torokhov
  2026-02-18 19:06 ` [PATCH 4/7] gpio: lp873x: " Dmitry Torokhov
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Dmitry Torokhov @ 2026-02-18 19:06 UTC (permalink / raw)
  To: Linus Walleij, Bartosz Golaszewski
  Cc: Marek Vasut, Thomas Richard, linux-kernel, linux-gpio

The GPIO get callback is expected to return 0 or 1 (or a negative error
code). Ensure that the value returned by da9055_gpio_get() is normalized
to the [0, 1] range.

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
 drivers/gpio/gpio-da9055.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-da9055.c b/drivers/gpio/gpio-da9055.c
index a09bd6eb93cf..1949a6ea8ec6 100644
--- a/drivers/gpio/gpio-da9055.c
+++ b/drivers/gpio/gpio-da9055.c
@@ -55,7 +55,7 @@ static int da9055_gpio_get(struct gpio_chip *gc, unsigned offset)
 			return ret;
 	}
 
-	return ret & (1 << offset);
+	return !!(ret & (1 << offset));
 
 }
 
-- 
2.53.0.335.g19a08e0c02-goog


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

* [PATCH 4/7] gpio: lp873x: normalize return value of gpio_get
  2026-02-18 19:06 [PATCH 1/7] gpio: bd9571mwv: normalize return value of gpio_get Dmitry Torokhov
  2026-02-18 19:06 ` [PATCH 2/7] gpio: cgbc: " Dmitry Torokhov
  2026-02-18 19:06 ` [PATCH 3/7] gpio: da9055: " Dmitry Torokhov
@ 2026-02-18 19:06 ` Dmitry Torokhov
  2026-02-18 19:06 ` [PATCH 5/7] gpio: stp-xway: " Dmitry Torokhov
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Dmitry Torokhov @ 2026-02-18 19:06 UTC (permalink / raw)
  To: Linus Walleij, Bartosz Golaszewski
  Cc: Marek Vasut, Thomas Richard, linux-kernel, linux-gpio

The GPIO get callback is expected to return 0 or 1 (or a negative error
code). Ensure that the value returned by lp873x_gpio_get() is normalized
to the [0, 1] range.

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
 drivers/gpio/gpio-lp873x.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-lp873x.c b/drivers/gpio/gpio-lp873x.c
index 5376708a81bf..f4413fa5a811 100644
--- a/drivers/gpio/gpio-lp873x.c
+++ b/drivers/gpio/gpio-lp873x.c
@@ -55,7 +55,7 @@ static int lp873x_gpio_get(struct gpio_chip *chip, unsigned int offset)
 	if (ret < 0)
 		return ret;
 
-	return val & BIT(offset * BITS_PER_GPO);
+	return !!(val & BIT(offset * BITS_PER_GPO));
 }
 
 static int lp873x_gpio_set(struct gpio_chip *chip, unsigned int offset,
-- 
2.53.0.335.g19a08e0c02-goog


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

* [PATCH 5/7] gpio: stp-xway: normalize return value of gpio_get
  2026-02-18 19:06 [PATCH 1/7] gpio: bd9571mwv: normalize return value of gpio_get Dmitry Torokhov
                   ` (2 preceding siblings ...)
  2026-02-18 19:06 ` [PATCH 4/7] gpio: lp873x: " Dmitry Torokhov
@ 2026-02-18 19:06 ` Dmitry Torokhov
  2026-02-18 19:06 ` [PATCH 6/7] gpio: tps65086: " Dmitry Torokhov
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Dmitry Torokhov @ 2026-02-18 19:06 UTC (permalink / raw)
  To: Linus Walleij, Bartosz Golaszewski
  Cc: Marek Vasut, Thomas Richard, linux-kernel, linux-gpio

The GPIO get callback is expected to return 0 or 1 (or a negative error
code). Ensure that the value returned by xway_stp_get() is normalized
to the [0, 1] range.

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
 drivers/gpio/gpio-stp-xway.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-stp-xway.c b/drivers/gpio/gpio-stp-xway.c
index 493c027afdd6..78d6c78d4aab 100644
--- a/drivers/gpio/gpio-stp-xway.c
+++ b/drivers/gpio/gpio-stp-xway.c
@@ -102,7 +102,7 @@ static int xway_stp_get(struct gpio_chip *gc, unsigned int gpio)
 {
 	struct xway_stp *chip = gpiochip_get_data(gc);
 
-	return (xway_stp_r32(chip->virt, XWAY_STP_CPU0) & BIT(gpio));
+	return !!(xway_stp_r32(chip->virt, XWAY_STP_CPU0) & BIT(gpio));
 }
 
 /**
-- 
2.53.0.335.g19a08e0c02-goog


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

* [PATCH 6/7] gpio: tps65086: normalize return value of gpio_get
  2026-02-18 19:06 [PATCH 1/7] gpio: bd9571mwv: normalize return value of gpio_get Dmitry Torokhov
                   ` (3 preceding siblings ...)
  2026-02-18 19:06 ` [PATCH 5/7] gpio: stp-xway: " Dmitry Torokhov
@ 2026-02-18 19:06 ` Dmitry Torokhov
  2026-02-18 19:06 ` [PATCH 7/7] gpio: viperboard: " Dmitry Torokhov
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Dmitry Torokhov @ 2026-02-18 19:06 UTC (permalink / raw)
  To: Linus Walleij, Bartosz Golaszewski
  Cc: Marek Vasut, Thomas Richard, linux-kernel, linux-gpio

The GPIO get callback is expected to return 0 or 1 (or a negative error
code). Ensure that the value returned by tps65086_gpio_get() is normalized
to the [0, 1] range.

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
 drivers/gpio/gpio-tps65086.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-tps65086.c b/drivers/gpio/gpio-tps65086.c
index 84b17b83476f..df770ecf28bc 100644
--- a/drivers/gpio/gpio-tps65086.c
+++ b/drivers/gpio/gpio-tps65086.c
@@ -50,7 +50,7 @@ static int tps65086_gpio_get(struct gpio_chip *chip, unsigned offset)
 	if (ret < 0)
 		return ret;
 
-	return val & BIT(4 + offset);
+	return !!(val & BIT(4 + offset));
 }
 
 static int tps65086_gpio_set(struct gpio_chip *chip, unsigned int offset,
-- 
2.53.0.335.g19a08e0c02-goog


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

* [PATCH 7/7] gpio: viperboard: normalize return value of gpio_get
  2026-02-18 19:06 [PATCH 1/7] gpio: bd9571mwv: normalize return value of gpio_get Dmitry Torokhov
                   ` (4 preceding siblings ...)
  2026-02-18 19:06 ` [PATCH 6/7] gpio: tps65086: " Dmitry Torokhov
@ 2026-02-18 19:06 ` Dmitry Torokhov
  2026-02-18 20:23 ` [PATCH 1/7] gpio: bd9571mwv: " Bartosz Golaszewski
  2026-02-23  9:57 ` Bartosz Golaszewski
  7 siblings, 0 replies; 11+ messages in thread
From: Dmitry Torokhov @ 2026-02-18 19:06 UTC (permalink / raw)
  To: Linus Walleij, Bartosz Golaszewski
  Cc: Marek Vasut, Thomas Richard, linux-kernel, linux-gpio

The GPIO get callback is expected to return 0 or 1 (or a negative error
code). Ensure that the value returned by vprbrd_gpiob_get() in the output
case is normalized to the [0, 1] range.

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
 drivers/gpio/gpio-viperboard.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-viperboard.c b/drivers/gpio/gpio-viperboard.c
index 15e495c109d2..89087fd48a81 100644
--- a/drivers/gpio/gpio-viperboard.c
+++ b/drivers/gpio/gpio-viperboard.c
@@ -288,7 +288,7 @@ static int vprbrd_gpiob_get(struct gpio_chip *chip,
 
 	/* if io is set to output, just return the saved value */
 	if (gpio->gpiob_out & (1 << offset))
-		return gpio->gpiob_val & (1 << offset);
+		return !!(gpio->gpiob_val & (1 << offset));
 
 	mutex_lock(&vb->lock);
 
-- 
2.53.0.335.g19a08e0c02-goog


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

* Re: [PATCH 1/7] gpio: bd9571mwv: normalize return value of gpio_get
  2026-02-18 19:06 [PATCH 1/7] gpio: bd9571mwv: normalize return value of gpio_get Dmitry Torokhov
                   ` (5 preceding siblings ...)
  2026-02-18 19:06 ` [PATCH 7/7] gpio: viperboard: " Dmitry Torokhov
@ 2026-02-18 20:23 ` Bartosz Golaszewski
  2026-02-18 21:02   ` Dmitry Torokhov
  2026-02-23  9:57 ` Bartosz Golaszewski
  7 siblings, 1 reply; 11+ messages in thread
From: Bartosz Golaszewski @ 2026-02-18 20:23 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: Linus Walleij, Marek Vasut, Thomas Richard, linux-kernel,
	linux-gpio

On Wed, Feb 18, 2026 at 8:07 PM Dmitry Torokhov
<dmitry.torokhov@gmail.com> wrote:
>
> The GPIO get callback is expected to return 0 or 1 (or a negative error
> code). Ensure that the value returned by bd9571mwv_gpio_get() is
> normalized to the [0, 1] range.
>
> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
> ---
>  drivers/gpio/gpio-bd9571mwv.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpio/gpio-bd9571mwv.c b/drivers/gpio/gpio-bd9571mwv.c
> index 7c95bb36511e..cc5b1746f2fe 100644
> --- a/drivers/gpio/gpio-bd9571mwv.c
> +++ b/drivers/gpio/gpio-bd9571mwv.c
> @@ -69,7 +69,7 @@ static int bd9571mwv_gpio_get(struct gpio_chip *chip, unsigned int offset)
>         if (ret < 0)
>                 return ret;
>
> -       return val & BIT(offset);
> +       return !!(val & BIT(offset));
>  }
>
>  static int bd9571mwv_gpio_set(struct gpio_chip *chip, unsigned int offset,
> --
> 2.53.0.335.g19a08e0c02-goog
>

Thanks for doing this. I think it would make sense to backport them
all the way to commit 86ef402d805d ("gpiolib: sanitize the return
value of gpio_chip::get()")?

Bartosz

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

* Re: [PATCH 1/7] gpio: bd9571mwv: normalize return value of gpio_get
  2026-02-18 20:23 ` [PATCH 1/7] gpio: bd9571mwv: " Bartosz Golaszewski
@ 2026-02-18 21:02   ` Dmitry Torokhov
  2026-02-19  8:57     ` Bartosz Golaszewski
  0 siblings, 1 reply; 11+ messages in thread
From: Dmitry Torokhov @ 2026-02-18 21:02 UTC (permalink / raw)
  To: Bartosz Golaszewski
  Cc: Linus Walleij, Marek Vasut, Thomas Richard, linux-kernel,
	linux-gpio

On Wed, Feb 18, 2026 at 09:23:38PM +0100, Bartosz Golaszewski wrote:
> On Wed, Feb 18, 2026 at 8:07 PM Dmitry Torokhov
> <dmitry.torokhov@gmail.com> wrote:
> >
> > The GPIO get callback is expected to return 0 or 1 (or a negative error
> > code). Ensure that the value returned by bd9571mwv_gpio_get() is
> > normalized to the [0, 1] range.
> >
> > Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
> > ---
> >  drivers/gpio/gpio-bd9571mwv.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/gpio/gpio-bd9571mwv.c b/drivers/gpio/gpio-bd9571mwv.c
> > index 7c95bb36511e..cc5b1746f2fe 100644
> > --- a/drivers/gpio/gpio-bd9571mwv.c
> > +++ b/drivers/gpio/gpio-bd9571mwv.c
> > @@ -69,7 +69,7 @@ static int bd9571mwv_gpio_get(struct gpio_chip *chip, unsigned int offset)
> >         if (ret < 0)
> >                 return ret;
> >
> > -       return val & BIT(offset);
> > +       return !!(val & BIT(offset));
> >  }
> >
> >  static int bd9571mwv_gpio_set(struct gpio_chip *chip, unsigned int offset,
> > --
> > 2.53.0.335.g19a08e0c02-goog
> >
> 
> Thanks for doing this. I think it would make sense to backport them
> all the way to commit 86ef402d805d ("gpiolib: sanitize the return
> value of gpio_chip::get()")?

I do not think this is workable since the breakages are not limited to
dtivers/gpio/.

I would recommend reverting the patch for stable, but keeping it for 7.0
and working with maintainers outside of drivers/gpio to make sure the
fixes land in this release cycle.

This way you will ensure that new drivers are not adding tech debt while
not punishing existing users who might not be running latest and
greatest kernel.

Thanks.

-- 
Dmitry

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

* Re: [PATCH 1/7] gpio: bd9571mwv: normalize return value of gpio_get
  2026-02-18 21:02   ` Dmitry Torokhov
@ 2026-02-19  8:57     ` Bartosz Golaszewski
  0 siblings, 0 replies; 11+ messages in thread
From: Bartosz Golaszewski @ 2026-02-19  8:57 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: Linus Walleij, Marek Vasut, Thomas Richard, linux-kernel,
	linux-gpio

On Wed, Feb 18, 2026 at 10:02 PM Dmitry Torokhov
<dmitry.torokhov@gmail.com> wrote:
>
> On Wed, Feb 18, 2026 at 09:23:38PM +0100, Bartosz Golaszewski wrote:
> > On Wed, Feb 18, 2026 at 8:07 PM Dmitry Torokhov
> > <dmitry.torokhov@gmail.com> wrote:
> > >
> > > The GPIO get callback is expected to return 0 or 1 (or a negative error
> > > code). Ensure that the value returned by bd9571mwv_gpio_get() is
> > > normalized to the [0, 1] range.
> > >
> > > Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
> > > ---
> > >  drivers/gpio/gpio-bd9571mwv.c | 2 +-
> > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/drivers/gpio/gpio-bd9571mwv.c b/drivers/gpio/gpio-bd9571mwv.c
> > > index 7c95bb36511e..cc5b1746f2fe 100644
> > > --- a/drivers/gpio/gpio-bd9571mwv.c
> > > +++ b/drivers/gpio/gpio-bd9571mwv.c
> > > @@ -69,7 +69,7 @@ static int bd9571mwv_gpio_get(struct gpio_chip *chip, unsigned int offset)
> > >         if (ret < 0)
> > >                 return ret;
> > >
> > > -       return val & BIT(offset);
> > > +       return !!(val & BIT(offset));
> > >  }
> > >
> > >  static int bd9571mwv_gpio_set(struct gpio_chip *chip, unsigned int offset,
> > > --
> > > 2.53.0.335.g19a08e0c02-goog
> > >
> >
> > Thanks for doing this. I think it would make sense to backport them
> > all the way to commit 86ef402d805d ("gpiolib: sanitize the return
> > value of gpio_chip::get()")?
>
> I do not think this is workable since the breakages are not limited to
> dtivers/gpio/.
>
> I would recommend reverting the patch for stable, but keeping it for 7.0
> and working with maintainers outside of drivers/gpio to make sure the
> fixes land in this release cycle.
>
> This way you will ensure that new drivers are not adding tech debt while
> not punishing existing users who might not be running latest and
> greatest kernel.
>

Sigh... I sent a patch[1]. Let's get it upstream and not diverge
between mainline and stable.

Thanks for the slew of fixes.

Bartosz

[1] https://lore.kernel.org/all/20260219-gpiolib-set-normalize-v1-1-f0d53a009db4@oss.qualcomm.com/

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

* Re: [PATCH 1/7] gpio: bd9571mwv: normalize return value of gpio_get
  2026-02-18 19:06 [PATCH 1/7] gpio: bd9571mwv: normalize return value of gpio_get Dmitry Torokhov
                   ` (6 preceding siblings ...)
  2026-02-18 20:23 ` [PATCH 1/7] gpio: bd9571mwv: " Bartosz Golaszewski
@ 2026-02-23  9:57 ` Bartosz Golaszewski
  7 siblings, 0 replies; 11+ messages in thread
From: Bartosz Golaszewski @ 2026-02-23  9:57 UTC (permalink / raw)
  To: Linus Walleij, Bartosz Golaszewski, Dmitry Torokhov
  Cc: Bartosz Golaszewski, Marek Vasut, Thomas Richard, linux-kernel,
	linux-gpio


On Wed, 18 Feb 2026 11:06:50 -0800, Dmitry Torokhov wrote:
> The GPIO get callback is expected to return 0 or 1 (or a negative error
> code). Ensure that the value returned by bd9571mwv_gpio_get() is
> normalized to the [0, 1] range.
> 
> 

Applied, thanks!

[1/7] gpio: bd9571mwv: normalize return value of gpio_get
      https://git.kernel.org/brgl/c/c43778680546dd379b3d8219c177b1a34ba87002
[2/7] gpio: cgbc: normalize return value of gpio_get
      https://git.kernel.org/brgl/c/49621f1c97788216f2f10f1a9e903f216e289f5d
[3/7] gpio: da9055: normalize return value of gpio_get
      https://git.kernel.org/brgl/c/4d720b0d68e9a251d60804eace42aac800d7a79f
[4/7] gpio: lp873x: normalize return value of gpio_get
      https://git.kernel.org/brgl/c/5a32ebabb6819fafce99e7bc6575ca568af6d22a
[5/7] gpio: stp-xway: normalize return value of gpio_get
      https://git.kernel.org/brgl/c/e62b94a690c8cd7050c3d308e01ee1b24ee9bb0b
[6/7] gpio: tps65086: normalize return value of gpio_get
      https://git.kernel.org/brgl/c/9eb7ecfd20f868421e44701274896ba9e136daae
[7/7] gpio: viperboard: normalize return value of gpio_get
      https://git.kernel.org/brgl/c/c08381ad56a9cc111f893b2b21400ceb468cc698

Best regards,
-- 
Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>

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

end of thread, other threads:[~2026-02-23  9:57 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-18 19:06 [PATCH 1/7] gpio: bd9571mwv: normalize return value of gpio_get Dmitry Torokhov
2026-02-18 19:06 ` [PATCH 2/7] gpio: cgbc: " Dmitry Torokhov
2026-02-18 19:06 ` [PATCH 3/7] gpio: da9055: " Dmitry Torokhov
2026-02-18 19:06 ` [PATCH 4/7] gpio: lp873x: " Dmitry Torokhov
2026-02-18 19:06 ` [PATCH 5/7] gpio: stp-xway: " Dmitry Torokhov
2026-02-18 19:06 ` [PATCH 6/7] gpio: tps65086: " Dmitry Torokhov
2026-02-18 19:06 ` [PATCH 7/7] gpio: viperboard: " Dmitry Torokhov
2026-02-18 20:23 ` [PATCH 1/7] gpio: bd9571mwv: " Bartosz Golaszewski
2026-02-18 21:02   ` Dmitry Torokhov
2026-02-19  8:57     ` Bartosz Golaszewski
2026-02-23  9:57 ` Bartosz Golaszewski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox