* [PATCH] fbdev: via: use new GPIO line value setter callbacks
@ 2025-04-08 7:42 Bartosz Golaszewski
2025-04-23 15:14 ` Bartosz Golaszewski
2025-04-24 8:52 ` Linus Walleij
0 siblings, 2 replies; 4+ messages in thread
From: Bartosz Golaszewski @ 2025-04-08 7:42 UTC (permalink / raw)
To: Florian Tobias Schandinat, Helge Deller, Linus Walleij,
Bartosz Golaszewski
Cc: linux-fbdev, dri-devel, linux-kernel, linux-gpio,
Bartosz Golaszewski
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
struct gpio_chip now has callbacks for setting line values that return
an integer, allowing to indicate failures. Convert the driver to using
them.
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
---
Commit 98ce1eb1fd87e ("gpiolib: introduce gpio_chip setters that return
values") added new line setter callbacks to struct gpio_chip. They allow
to indicate failures to callers. We're in the process of converting all
GPIO controllers to using them before removing the old ones.
---
drivers/video/fbdev/via/via-gpio.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/video/fbdev/via/via-gpio.c b/drivers/video/fbdev/via/via-gpio.c
index 9577c2cd52c7..27226a8f3f42 100644
--- a/drivers/video/fbdev/via/via-gpio.c
+++ b/drivers/video/fbdev/via/via-gpio.c
@@ -81,8 +81,7 @@ struct viafb_gpio_cfg {
/*
* GPIO access functions
*/
-static void via_gpio_set(struct gpio_chip *chip, unsigned int nr,
- int value)
+static int via_gpio_set(struct gpio_chip *chip, unsigned int nr, int value)
{
struct viafb_gpio_cfg *cfg = gpiochip_get_data(chip);
u8 reg;
@@ -99,13 +98,14 @@ static void via_gpio_set(struct gpio_chip *chip, unsigned int nr,
reg &= ~(0x10 << gpio->vg_mask_shift);
via_write_reg(VIASR, gpio->vg_port_index, reg);
spin_unlock_irqrestore(&cfg->vdev->reg_lock, flags);
+
+ return 0;
}
static int via_gpio_dir_out(struct gpio_chip *chip, unsigned int nr,
int value)
{
- via_gpio_set(chip, nr, value);
- return 0;
+ return via_gpio_set(chip, nr, value);
}
/*
@@ -146,7 +146,7 @@ static struct viafb_gpio_cfg viafb_gpio_config = {
.label = "VIAFB onboard GPIO",
.owner = THIS_MODULE,
.direction_output = via_gpio_dir_out,
- .set = via_gpio_set,
+ .set_rv = via_gpio_set,
.direction_input = via_gpio_dir_input,
.get = via_gpio_get,
.base = -1,
---
base-commit: 0af2f6be1b4281385b618cb86ad946eded089ac8
change-id: 20250331-gpiochip-set-rv-video-6bf1584aa770
Best regards,
--
Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] fbdev: via: use new GPIO line value setter callbacks
2025-04-08 7:42 [PATCH] fbdev: via: use new GPIO line value setter callbacks Bartosz Golaszewski
@ 2025-04-23 15:14 ` Bartosz Golaszewski
2025-04-24 8:52 ` Linus Walleij
1 sibling, 0 replies; 4+ messages in thread
From: Bartosz Golaszewski @ 2025-04-23 15:14 UTC (permalink / raw)
To: Florian Tobias Schandinat, Helge Deller, Linus Walleij,
Bartosz Golaszewski
Cc: linux-fbdev, dri-devel, linux-kernel, linux-gpio,
Bartosz Golaszewski
On Tue, Apr 8, 2025 at 9:42 AM Bartosz Golaszewski <brgl@bgdev.pl> wrote:
>
> From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
>
> struct gpio_chip now has callbacks for setting line values that return
> an integer, allowing to indicate failures. Convert the driver to using
> them.
>
> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> ---
> Commit 98ce1eb1fd87e ("gpiolib: introduce gpio_chip setters that return
> values") added new line setter callbacks to struct gpio_chip. They allow
> to indicate failures to callers. We're in the process of converting all
> GPIO controllers to using them before removing the old ones.
> ---
Gentle ping.
Bart
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] fbdev: via: use new GPIO line value setter callbacks
2025-04-08 7:42 [PATCH] fbdev: via: use new GPIO line value setter callbacks Bartosz Golaszewski
2025-04-23 15:14 ` Bartosz Golaszewski
@ 2025-04-24 8:52 ` Linus Walleij
2025-04-24 10:39 ` Helge Deller
1 sibling, 1 reply; 4+ messages in thread
From: Linus Walleij @ 2025-04-24 8:52 UTC (permalink / raw)
To: Bartosz Golaszewski
Cc: Florian Tobias Schandinat, Helge Deller, linux-fbdev, dri-devel,
linux-kernel, linux-gpio, Bartosz Golaszewski
On Tue, Apr 8, 2025 at 9:43 AM Bartosz Golaszewski <brgl@bgdev.pl> wrote:
> From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
>
> struct gpio_chip now has callbacks for setting line values that return
> an integer, allowing to indicate failures. Convert the driver to using
> them.
>
> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] fbdev: via: use new GPIO line value setter callbacks
2025-04-24 8:52 ` Linus Walleij
@ 2025-04-24 10:39 ` Helge Deller
0 siblings, 0 replies; 4+ messages in thread
From: Helge Deller @ 2025-04-24 10:39 UTC (permalink / raw)
To: Linus Walleij, Bartosz Golaszewski
Cc: Florian Tobias Schandinat, linux-fbdev, dri-devel, linux-kernel,
linux-gpio, Bartosz Golaszewski
On 4/24/25 10:52, Linus Walleij wrote:
> On Tue, Apr 8, 2025 at 9:43 AM Bartosz Golaszewski <brgl@bgdev.pl> wrote:
>
>> From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
>>
>> struct gpio_chip now has callbacks for setting line values that return
>> an integer, allowing to indicate failures. Convert the driver to using
>> them.
>>
>> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
>
> Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
added to fbdev for-next tree.
Thanks!
Helge
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-04-24 10:39 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-08 7:42 [PATCH] fbdev: via: use new GPIO line value setter callbacks Bartosz Golaszewski
2025-04-23 15:14 ` Bartosz Golaszewski
2025-04-24 8:52 ` Linus Walleij
2025-04-24 10:39 ` Helge Deller
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).