lkml.org 
[lkml]   [2022]   [Sep]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
SubjectRe: [PATCH] usb: cdns3: remove dead code
From


On 26/09/2022 16:59, Dongliang Mu wrote:
> From: Dongliang Mu <mudongliangabcd@gmail.com>
>
> Smatch reports the following error:
>
> drivers/usb/cdns3/cdns3-plat.c:113 cdns3_plat_probe() warn:
> platform_get_irq() does not return zero
>
> From the document, platform_get_irq_byname_optional only returns
> non-zero value, and negative value on failure.
>
> Fix this by removing the zero value checking.
>
> Signed-off-by: Dongliang Mu <mudongliangabcd@gmail.com>

Reviewed-by: Roger Quadros <rogerq@kernel.org>

> ---
> drivers/usb/cdns3/cdns3-plat.c | 2 --
> 1 file changed, 2 deletions(-)
>
> diff --git a/drivers/usb/cdns3/cdns3-plat.c b/drivers/usb/cdns3/cdns3-plat.c
> index dc068e940ed5..2bc5d094548b 100644
> --- a/drivers/usb/cdns3/cdns3-plat.c
> +++ b/drivers/usb/cdns3/cdns3-plat.c
> @@ -110,8 +110,6 @@ static int cdns3_plat_probe(struct platform_device *pdev)
> cdns->wakeup_irq = platform_get_irq_byname_optional(pdev, "wakeup");
> if (cdns->wakeup_irq == -EPROBE_DEFER)
> return cdns->wakeup_irq;
> - else if (cdns->wakeup_irq == 0)
> - return -EINVAL;
>
> if (cdns->wakeup_irq < 0) {
> dev_dbg(dev, "couldn't get wakeup irq\n");


cheers,
-roger

\
 
 \ /
  Last update: 2022-09-28 08:52    [W:0.074 / U:0.328 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site