phy: brcm-sata: Return proper error if brcm_sata_phy_init fails
authorAxel Lin <axel.lin@ingics.com>
Wed, 10 Aug 2016 10:04:44 +0000 (18:04 +0800)
committerKishon Vijay Abraham I <kishon@ti.com>
Fri, 12 Aug 2016 09:29:10 +0000 (14:59 +0530)
Return proper error instead of 0 if brcm_sata_phy_init fails.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
drivers/phy/phy-brcm-sata.c

index 18d6626..8ffc44a 100644 (file)
@@ -367,7 +367,7 @@ static int brcm_sata_phy_init(struct phy *phy)
                rc = -ENODEV;
        };
 
-       return 0;
+       return rc;
 }
 
 static const struct phy_ops phy_ops = {