Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

pata_ep93xx: fix deferred probing

The driver overrides the error codes returned by platform_get_irq() to
-ENXIO, so if it returns -EPROBE_DEFER, the driver would fail the probe
permanently instead of the deferred probing. Propagate the error code
upstream, as it should have been done from the start...

Fixes: 2fff27512600 ("PATA host controller driver for ep93xx")
Signed-off-by: Sergey Shtylyov <s.shtylyov@omprussia.ru>
Link: https://lore.kernel.org/r/509fda88-2e0d-2cc7-f411-695d7e94b136@omprussia.ru
Signed-off-by: Jens Axboe <axboe@kernel.dk>

authored by

Sergey Shtylyov and committed by
Jens Axboe
5c812126 bfc1f378

+1 -1
+1 -1
drivers/ata/pata_ep93xx.c
··· 928 928 /* INT[3] (IRQ_EP93XX_EXT3) line connected as pull down */ 929 929 irq = platform_get_irq(pdev, 0); 930 930 if (irq < 0) { 931 - err = -ENXIO; 931 + err = irq; 932 932 goto err_rel_gpio; 933 933 } 934 934