summaryrefslogtreecommitdiffstats
path: root/drivers/phy
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2016-08-10 18:04:44 +0800
committerKishon Vijay Abraham I <kishon@ti.com>2016-08-12 14:59:10 +0530
commitbf8ca651e1f8f054b39b6b3b95d6f515c3c857d5 (patch)
tree2e94acdf7caf4fa1778bf2982a2ea3950aa4a697 /drivers/phy
parent1766e7b3763a0707c2fda9689a7866dceed07b7a (diff)
downloadlinux-0-day-bf8ca651e1f8f054b39b6b3b95d6f515c3c857d5.tar.gz
linux-0-day-bf8ca651e1f8f054b39b6b3b95d6f515c3c857d5.tar.xz
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')
-rw-r--r--drivers/phy/phy-brcm-sata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/phy/phy-brcm-sata.c b/drivers/phy/phy-brcm-sata.c
index 18d662610075b..8ffc44afdb75b 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 = {