]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
net: smsc911x: back out silently on probe deferrals
authorLinus Walleij <linus.walleij@linaro.org>
Fri, 9 Dec 2016 13:18:00 +0000 (14:18 +0100)
committerDavid S. Miller <davem@davemloft.net>
Sat, 10 Dec 2016 04:05:16 +0000 (23:05 -0500)
When trying to get a regulator we may get deferred and we see
this noise:

smsc911x 1b800000.ethernet-ebi2 (unnamed net_device) (uninitialized):
   couldn't get regulators -517

Then the driver continues anyway. Which means that the regulator
may not be properly retrieved and reference counted, and may be
switched off in case noone else is using it.

Fix this by returning silently on deferred probe and let the
system work it out.

Cc: Jeremy Linton <jeremy.linton@arm.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/smsc/smsc911x.c

index e9b8579e6241476bd2c82486a0e1a91b2cafcad7..8b0016a785c0610a28a4671e621d9e18ede72cec 100644 (file)
@@ -438,9 +438,16 @@ static int smsc911x_request_resources(struct platform_device *pdev)
        ret = regulator_bulk_get(&pdev->dev,
                        ARRAY_SIZE(pdata->supplies),
                        pdata->supplies);
-       if (ret)
+       if (ret) {
+               /*
+                * Retry on deferrals, else just report the error
+                * and try to continue.
+                */
+               if (ret == -EPROBE_DEFER)
+                       return ret;
                netdev_err(ndev, "couldn't get regulators %d\n",
                                ret);
+       }
 
        /* Request optional RESET GPIO */
        pdata->reset_gpiod = devm_gpiod_get_optional(&pdev->dev,