Message ID | 153446a9-a5a9-1ce5-b224-6e0d5dd14eff@omprussia.ru |
---|---|
State | New |
Headers | show |
Series | Fix deferred probing for the Toshiba TX493x IDE drivers | expand |
Index: ide/drivers/ide/tx4939ide.c =================================================================== --- ide.orig/drivers/ide/tx4939ide.c +++ ide/drivers/ide/tx4939ide.c @@ -543,7 +543,7 @@ static int __init tx4939ide_probe(struct irq = platform_get_irq(pdev, 0); if (irq < 0) - return -ENODEV; + return irq; res = platform_get_resource(pdev, IORESOURCE_MEM, 0); if (!res) return -ENODEV;
The driver overrides the error codes 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 code upstream. Fixes: 37897989232e ("ide: Add tx4939ide driver (v6)") Signed-off-by: Sergey Shtylyov <s.shtylyov@omprussia.ru> --- drivers/ide/tx4939ide.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)