[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <655d95c2-20d2-e03f-539e-32fbe69da9fc@ti.com>
Date: Tue, 5 Nov 2019 11:38:35 +0530
From: Keerthy <j-keerthy@...com>
To: YueHaibing <yuehaibing@...wei.com>, <edubezval@...il.com>,
<rui.zhang@...el.com>, <daniel.lezcano@...aro.org>,
<amit.kucheria@...durent.com>
CC: <linux-pm@...r.kernel.org>, <linux-omap@...r.kernel.org>,
<linux-kernel@...r.kernel.org>
Subject: Re: [PATCH -next] thermal: ti-soc-thermal: Remove dev_err() on
platform_get_irq() failure
On 02/11/19 1:26 PM, YueHaibing wrote:
> platform_get_irq() will call dev_err() itself on failure,
> so there is no need for the driver to also do this.
> This is detected by coccinelle.
Acked-by: Keerthy <j-keerthy@...com>
>
> Signed-off-by: YueHaibing <yuehaibing@...wei.com>
> ---
> drivers/thermal/ti-soc-thermal/ti-bandgap.c | 5 ++---
> 1 file changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/thermal/ti-soc-thermal/ti-bandgap.c b/drivers/thermal/ti-soc-thermal/ti-bandgap.c
> index 2fa78f7..89c3ba7 100644
> --- a/drivers/thermal/ti-soc-thermal/ti-bandgap.c
> +++ b/drivers/thermal/ti-soc-thermal/ti-bandgap.c
> @@ -787,10 +787,9 @@ static int ti_bandgap_talert_init(struct ti_bandgap *bgp,
> int ret;
>
> bgp->irq = platform_get_irq(pdev, 0);
> - if (bgp->irq < 0) {
> - dev_err(&pdev->dev, "get_irq failed\n");
> + if (bgp->irq < 0)
> return bgp->irq;
> - }
> +
> ret = request_threaded_irq(bgp->irq, NULL,
> ti_bandgap_talert_irq_handler,
> IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
>
Powered by blists - more mailing lists