Re: [PATCH v3 1/6] usb: gadget: udc: gr: fix deferred probing
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Date: 2021-12-13 14:11:55
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Date: 2021-12-13 14:11:55
On Fri, Dec 10, 2021 at 11:46:29PM +0300, Sergey Shtylyov wrote:
The driver overrides the error codes and IRQ0 returned by platform_get_irq() to -ENODEV, so if it returns -EPROBE_DEFER, the driver will fail the probe permanently instead of the deferred probing. Switch to propagating the error codes upstream. IRQ0 is no longer returned by platform_get_irq(), so we now can safely ignore it...
What commit keeps IRQ0 from being returned by platform_get_irq()?