Skip to content

Commit b465dea

Browse files
Sergey ShtylyovUlf Hansson
authored andcommitted
mmc: sdhci-acpi: fix deferred probing
The driver overrides the error codes returned by platform_get_irq() to -EINVAL, 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. Fixes: 1b7ba57 ("mmc: sdhci-acpi: Handle return value of platform_get_irq") Signed-off-by: Sergey Shtylyov <s.shtylyov@omp.ru> Acked-by: Adrian Hunter <adrian.hunter@intel.com> Link: https://lore.kernel.org/r/20230617203622.6812-9-s.shtylyov@omp.ru Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
1 parent 3c482e1 commit b465dea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/mmc/host/sdhci-acpi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ static int sdhci_acpi_probe(struct platform_device *pdev)
829829
host->ops = &sdhci_acpi_ops_dflt;
830830
host->irq = platform_get_irq(pdev, 0);
831831
if (host->irq < 0) {
832-
err = -EINVAL;
832+
err = host->irq;
833833
goto err_free;
834834
}
835835

0 commit comments

Comments
 (0)