]> git.itanic.dy.fi Git - linux-stable/commitdiff
ata: libahci: do not complain in case of deferred probe
authorMiquel Raynal <miquel.raynal@bootlin.com>
Wed, 31 Jul 2019 12:26:51 +0000 (14:26 +0200)
committerSasha Levin <sashal@kernel.org>
Sun, 25 Aug 2019 14:10:31 +0000 (10:10 -0400)
[ Upstream commit 090bb803708198e5ab6b0046398c7ed9f4d12d6b ]

Retrieving PHYs can defer the probe, do not spawn an error when
-EPROBE_DEFER is returned, it is normal behavior.

Fixes: b1a9edbda040 ("ata: libahci: allow to use multiple PHYs")
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/ata/libahci_platform.c

index 72312ad2e142d41202d9378889a1cd015795c745..c25cdbf817f182b3585edf2db4ab28d51ee07405 100644 (file)
@@ -338,6 +338,9 @@ static int ahci_platform_get_phy(struct ahci_host_priv *hpriv, u32 port,
                hpriv->phys[port] = NULL;
                rc = 0;
                break;
+       case -EPROBE_DEFER:
+               /* Do not complain yet */
+               break;
 
        default:
                dev_err(dev,