* [PATCH] greybus: gb-beagleplay: remove unneeded calls to devm_gpiod_put()
@ 2025-06-18 8:20 Bartosz Golaszewski
2025-06-23 18:58 ` Ayush Singh
0 siblings, 1 reply; 2+ messages in thread
From: Bartosz Golaszewski @ 2025-06-18 8:20 UTC (permalink / raw)
To: Ayush Singh, Johan Hovold, Alex Elder, Greg Kroah-Hartman
Cc: greybus-dev, linux-kernel, Bartosz Golaszewski
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
gb_fw_init() is only called in this driver's probe() and we abort the
probing if it fails. This means that calling devm_gpiod_put() in error
path is not required as devres will already manage the releasing of the
resources when the device is detached.
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
---
drivers/greybus/gb-beagleplay.c | 21 ++++-----------------
1 file changed, 4 insertions(+), 17 deletions(-)
diff --git a/drivers/greybus/gb-beagleplay.c b/drivers/greybus/gb-beagleplay.c
index da31f1131afc..1ea48b71a030 100644
--- a/drivers/greybus/gb-beagleplay.c
+++ b/drivers/greybus/gb-beagleplay.c
@@ -1041,7 +1041,6 @@ static const struct fw_upload_ops cc1352_bootloader_ops = {
static int gb_fw_init(struct gb_beagleplay *bg)
{
- int ret;
struct fw_upload *fwl;
struct gpio_desc *desc;
@@ -1060,29 +1059,17 @@ static int gb_fw_init(struct gb_beagleplay *bg)
bg->bootloader_backdoor_gpio = desc;
desc = devm_gpiod_get(&bg->sd->dev, "reset", GPIOD_IN);
- if (IS_ERR(desc)) {
- ret = PTR_ERR(desc);
- goto free_boot;
- }
+ if (IS_ERR(desc))
+ return PTR_ERR(desc);
bg->rst_gpio = desc;
fwl = firmware_upload_register(THIS_MODULE, &bg->sd->dev, "cc1352p7",
&cc1352_bootloader_ops, bg);
- if (IS_ERR(fwl)) {
- ret = PTR_ERR(fwl);
- goto free_reset;
- }
+ if (IS_ERR(fwl))
+ return PTR_ERR(fwl);
bg->fwl = fwl;
return 0;
-
-free_reset:
- devm_gpiod_put(&bg->sd->dev, bg->rst_gpio);
- bg->rst_gpio = NULL;
-free_boot:
- devm_gpiod_put(&bg->sd->dev, bg->bootloader_backdoor_gpio);
- bg->bootloader_backdoor_gpio = NULL;
- return ret;
}
static void gb_fw_deinit(struct gb_beagleplay *bg)
--
2.48.1
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] greybus: gb-beagleplay: remove unneeded calls to devm_gpiod_put()
2025-06-18 8:20 [PATCH] greybus: gb-beagleplay: remove unneeded calls to devm_gpiod_put() Bartosz Golaszewski
@ 2025-06-23 18:58 ` Ayush Singh
0 siblings, 0 replies; 2+ messages in thread
From: Ayush Singh @ 2025-06-23 18:58 UTC (permalink / raw)
To: Bartosz Golaszewski, Johan Hovold, Alex Elder, Greg Kroah-Hartman
Cc: greybus-dev, linux-kernel, Bartosz Golaszewski
On 6/18/25 13:50, Bartosz Golaszewski wrote:
> From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
>
> gb_fw_init() is only called in this driver's probe() and we abort the
> probing if it fails. This means that calling devm_gpiod_put() in error
> path is not required as devres will already manage the releasing of the
> resources when the device is detached.
>
> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> ---
> drivers/greybus/gb-beagleplay.c | 21 ++++-----------------
> 1 file changed, 4 insertions(+), 17 deletions(-)
>
> diff --git a/drivers/greybus/gb-beagleplay.c b/drivers/greybus/gb-beagleplay.c
> index da31f1131afc..1ea48b71a030 100644
> --- a/drivers/greybus/gb-beagleplay.c
> +++ b/drivers/greybus/gb-beagleplay.c
> @@ -1041,7 +1041,6 @@ static const struct fw_upload_ops cc1352_bootloader_ops = {
>
> static int gb_fw_init(struct gb_beagleplay *bg)
> {
> - int ret;
> struct fw_upload *fwl;
> struct gpio_desc *desc;
>
> @@ -1060,29 +1059,17 @@ static int gb_fw_init(struct gb_beagleplay *bg)
> bg->bootloader_backdoor_gpio = desc;
>
> desc = devm_gpiod_get(&bg->sd->dev, "reset", GPIOD_IN);
> - if (IS_ERR(desc)) {
> - ret = PTR_ERR(desc);
> - goto free_boot;
> - }
> + if (IS_ERR(desc))
> + return PTR_ERR(desc);
> bg->rst_gpio = desc;
>
> fwl = firmware_upload_register(THIS_MODULE, &bg->sd->dev, "cc1352p7",
> &cc1352_bootloader_ops, bg);
> - if (IS_ERR(fwl)) {
> - ret = PTR_ERR(fwl);
> - goto free_reset;
> - }
> + if (IS_ERR(fwl))
> + return PTR_ERR(fwl);
> bg->fwl = fwl;
>
> return 0;
> -
> -free_reset:
> - devm_gpiod_put(&bg->sd->dev, bg->rst_gpio);
> - bg->rst_gpio = NULL;
> -free_boot:
> - devm_gpiod_put(&bg->sd->dev, bg->bootloader_backdoor_gpio);
> - bg->bootloader_backdoor_gpio = NULL;
> - return ret;
> }
>
> static void gb_fw_deinit(struct gb_beagleplay *bg)
Can you add a comment above the function that it should only ever be
called from probing code since it does not free up the resources? I
might end up forgetting and using it improperly in the future.
Best Regards,
Ayush Singh
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-06-23 18:58 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-18 8:20 [PATCH] greybus: gb-beagleplay: remove unneeded calls to devm_gpiod_put() Bartosz Golaszewski
2025-06-23 18:58 ` Ayush Singh
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.