diff options
author | Axel Lin <axel.lin@ingics.com> | 2016-08-10 18:04:44 +0800 |
---|---|---|
committer | Kishon Vijay Abraham I <kishon@ti.com> | 2016-08-12 14:59:10 +0530 |
commit | bf8ca651e1f8f054b39b6b3b95d6f515c3c857d5 (patch) | |
tree | 2e94acdf7caf4fa1778bf2982a2ea3950aa4a697 /drivers/phy/phy-brcm-sata.c | |
parent | 1766e7b3763a0707c2fda9689a7866dceed07b7a (diff) | |
download | linux-bf8ca651e1f8f054b39b6b3b95d6f515c3c857d5.tar.bz2 |
phy: brcm-sata: Return proper error if brcm_sata_phy_init fails
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>
Diffstat (limited to 'drivers/phy/phy-brcm-sata.c')
-rw-r--r-- | drivers/phy/phy-brcm-sata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/phy/phy-brcm-sata.c b/drivers/phy/phy-brcm-sata.c index 18d662610075..8ffc44afdb75 100644 --- a/drivers/phy/phy-brcm-sata.c +++ b/drivers/phy/phy-brcm-sata.c @@ -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 = { |