From: Hans de Goede <hansg@kernel.org>
To: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>,
Sebastian Reichel <sre@kernel.org>,
Chen-Yu Tsai <wens@kernel.org>,
linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/4] power: supply: axp288_charger: Simplify returns of dev_err_probe()
Date: Sat, 21 Feb 2026 16:19:05 +0100 [thread overview]
Message-ID: <51efbb45-496d-4c60-81b3-85af265d8f81@kernel.org> (raw)
In-Reply-To: <20260220174938.672883-6-krzysztof.kozlowski@oss.qualcomm.com>
Hi,
On 20-Feb-26 18:49, Krzysztof Kozlowski wrote:
> One of benefits of dev_err_probe() is that it returns the error value
> greatly simplifying the error paths (e.g. three lines -> one line).
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Thanks, patch looks good to me:
Reviewed-by: Hans de Goede <johannes.goede@oss.qualcomm.com>
Regards,
Hans
>
> ---
>
> Context depends on previous patch
> ---
> drivers/power/supply/axp288_charger.c | 52 ++++++++++++---------------
> 1 file changed, 22 insertions(+), 30 deletions(-)
>
> diff --git a/drivers/power/supply/axp288_charger.c b/drivers/power/supply/axp288_charger.c
> index ca52c2c82b2c..ea0f5caee8f0 100644
> --- a/drivers/power/supply/axp288_charger.c
> +++ b/drivers/power/supply/axp288_charger.c
> @@ -859,12 +859,10 @@ static int axp288_charger_probe(struct platform_device *pdev)
> info->regmap_irqc = axp20x->regmap_irqc;
>
> info->cable.edev = extcon_get_extcon_dev(AXP288_EXTCON_DEV_NAME);
> - if (IS_ERR(info->cable.edev)) {
> - dev_err_probe(dev, PTR_ERR(info->cable.edev),
> - "extcon_get_extcon_dev(%s) failed\n",
> - AXP288_EXTCON_DEV_NAME);
> - return PTR_ERR(info->cable.edev);
> - }
> + if (IS_ERR(info->cable.edev))
> + return dev_err_probe(dev, PTR_ERR(info->cable.edev),
> + "extcon_get_extcon_dev(%s) failed\n",
> + AXP288_EXTCON_DEV_NAME);
>
> /*
> * On devices with broken ACPI GPIO event handlers there also is no ACPI
> @@ -878,12 +876,11 @@ static int axp288_charger_probe(struct platform_device *pdev)
>
> if (extcon_name) {
> info->otg.cable = extcon_get_extcon_dev(extcon_name);
> - if (IS_ERR(info->otg.cable)) {
> - dev_err_probe(dev, PTR_ERR(info->otg.cable),
> - "extcon_get_extcon_dev(%s) failed\n",
> - USB_HOST_EXTCON_NAME);
> - return PTR_ERR(info->otg.cable);
> - }
> + if (IS_ERR(info->otg.cable))
> + return dev_err_probe(dev, PTR_ERR(info->otg.cable),
> + "extcon_get_extcon_dev(%s) failed\n",
> + USB_HOST_EXTCON_NAME);
> +
> dev_info(dev, "Using " USB_HOST_EXTCON_HID " extcon for usb-id\n");
> }
>
> @@ -897,11 +894,9 @@ static int axp288_charger_probe(struct platform_device *pdev)
> charger_cfg.drv_data = info;
> info->psy_usb = devm_power_supply_register(dev, &axp288_charger_desc,
> &charger_cfg);
> - if (IS_ERR(info->psy_usb)) {
> - ret = PTR_ERR(info->psy_usb);
> - dev_err(dev, "failed to register power supply: %d\n", ret);
> - return ret;
> - }
> + if (IS_ERR(info->psy_usb))
> + return dev_err_probe(dev, PTR_ERR(info->psy_usb),
> + "failed to register power supply: %d\n", ret);
>
> /* Cancel our work on cleanup, register this before the notifiers */
> ret = devm_work_autocancel(dev, &info->cable.work,
> @@ -913,10 +908,9 @@ static int axp288_charger_probe(struct platform_device *pdev)
> info->cable.nb.notifier_call = axp288_charger_handle_cable_evt;
> ret = devm_extcon_register_notifier_all(dev, info->cable.edev,
> &info->cable.nb);
> - if (ret) {
> - dev_err(dev, "failed to register cable extcon notifier\n");
> - return ret;
> - }
> + if (ret)
> + return dev_err_probe(dev, ret, "failed to register cable extcon notifier\n");
> +
> schedule_work(&info->cable.work);
>
> ret = devm_work_autocancel(dev, &info->otg.work,
> @@ -929,10 +923,10 @@ static int axp288_charger_probe(struct platform_device *pdev)
> if (info->otg.cable) {
> ret = devm_extcon_register_notifier(dev, info->otg.cable,
> EXTCON_USB_HOST, &info->otg.id_nb);
> - if (ret) {
> - dev_err(dev, "failed to register EXTCON_USB_HOST notifier\n");
> - return ret;
> - }
> + if (ret)
> + return dev_err_probe(dev, ret,
> + "failed to register EXTCON_USB_HOST notifier\n");
> +
> schedule_work(&info->otg.work);
> }
>
> @@ -951,11 +945,9 @@ static int axp288_charger_probe(struct platform_device *pdev)
> ret = devm_request_threaded_irq(&info->pdev->dev, info->irq[i],
> NULL, axp288_charger_irq_thread_handler,
> IRQF_ONESHOT, info->pdev->name, info);
> - if (ret) {
> - dev_err(dev, "failed to request interrupt=%d\n",
> - info->irq[i]);
> - return ret;
> - }
> + if (ret)
> + return dev_err_probe(dev, ret, "failed to request interrupt=%d\n",
> + info->irq[i]);
> }
>
> return 0;
next prev parent reply other threads:[~2026-02-21 15:19 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-20 17:49 [PATCH 1/4] power: supply: axp288_charger: Do not cancel work before initializing it Krzysztof Kozlowski
2026-02-20 17:49 ` [PATCH 2/4] power: supply: axp288_charger: Simplify returns of dev_err_probe() Krzysztof Kozlowski
2026-02-21 5:05 ` Chen-Yu Tsai
2026-02-21 15:19 ` Hans de Goede [this message]
2026-02-20 17:49 ` [PATCH 3/4] power: supply: bq24190: Avoid rescheduling after cancelling work Krzysztof Kozlowski
2026-02-21 15:19 ` Hans de Goede
2026-02-20 17:49 ` [PATCH 4/4] power: supply: twl4030_madc: Drop unused header includes Krzysztof Kozlowski
2026-02-21 15:19 ` Hans de Goede
2026-02-21 5:08 ` [PATCH 1/4] power: supply: axp288_charger: Do not cancel work before initializing it Chen-Yu Tsai
2026-02-21 15:17 ` Hans de Goede
2026-03-03 0:01 ` Sebastian Reichel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=51efbb45-496d-4c60-81b3-85af265d8f81@kernel.org \
--to=hansg@kernel.org \
--cc=krzysztof.kozlowski@oss.qualcomm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=sre@kernel.org \
--cc=wens@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox