[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <42a2ef2e-b522-40c9-ada2-0e804f7df5d5@kili.mountain>
Date: Thu, 23 Mar 2023 14:12:49 +0300
From: Dan Carpenter <error27@...il.com>
To: Mingxuan Xiang <mx_xiang@...t.edu.cn>,
Sergey Shtylyov <s.shtylyov@....ru>
Cc: Thinh Nguyen <Thinh.Nguyen@...opsys.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
hust-os-kernel-patches@...glegroups.com,
Dongliang Mu <dzm91@...t.edu.cn>, linux-usb@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH v2] usb: dwc3: host: remove dead code in
dwc3_host_get_irq()
On Thu, Mar 23, 2023 at 02:00:35PM +0300, Dan Carpenter wrote:
> irq = platform_get_irq(dwc3_pdev, 0);
> if (irq > 0) {
> dwc3_host_fill_xhci_irq_res(dwc, irq, NULL);
> - goto out;
> + return irq;
> }
>
> - if (!irq)
> - irq = -EINVAL;
> -
> -out:
> - return irq;
> + return -ENODEV;
Oh wait. We actually need to propagate the error code here because of
-EPROBE_DEFER so my patch introduces a bug.
regards,
dan carpenter
Powered by blists - more mailing lists