summaryrefslogtreecommitdiff
path: root/drivers/phy
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/phy')
-rw-r--r--drivers/phy/keystone-usb-phy.c2
-rw-r--r--drivers/phy/phy-uclass.c5
-rw-r--r--drivers/phy/ti/phy-j721e-wiz.c1
3 files changed, 4 insertions, 4 deletions
diff --git a/drivers/phy/keystone-usb-phy.c b/drivers/phy/keystone-usb-phy.c
index cfc15203d63..460efbe768d 100644
--- a/drivers/phy/keystone-usb-phy.c
+++ b/drivers/phy/keystone-usb-phy.c
@@ -41,7 +41,7 @@ static int keystone_usb_init(struct phy *phy)
rc = psc_enable_module(keystone->psc_domain);
if (rc) {
debug("Cannot enable USB module");
- return -rc;
+ return rc;
}
mdelay(10);
diff --git a/drivers/phy/phy-uclass.c b/drivers/phy/phy-uclass.c
index 714be123856..f8d4fb3b41b 100644
--- a/drivers/phy/phy-uclass.c
+++ b/drivers/phy/phy-uclass.c
@@ -274,7 +274,7 @@ int generic_phy_exit(struct phy *phy)
{
struct phy_counts *counts;
struct phy_ops const *ops;
- int ret;
+ int ret = 0;
if (!generic_phy_valid(phy))
return 0;
@@ -292,12 +292,11 @@ int generic_phy_exit(struct phy *phy)
if (ret) {
dev_err(phy->dev, "PHY: Failed to exit %s: %d.\n",
phy->dev->name, ret);
- return ret;
}
}
counts->init_count = 0;
- return 0;
+ return ret;
}
int generic_phy_power_on(struct phy *phy)
diff --git a/drivers/phy/ti/phy-j721e-wiz.c b/drivers/phy/ti/phy-j721e-wiz.c
index c69a342e2b4..6e2d4bc2b05 100644
--- a/drivers/phy/ti/phy-j721e-wiz.c
+++ b/drivers/phy/ti/phy-j721e-wiz.c
@@ -1201,6 +1201,7 @@ static int j721e_wiz_probe(struct udevice *dev)
if (num_lanes > WIZ_MAX_LANES) {
dev_err(dev, "Cannot support %d lanes\n", num_lanes);
+ rc = -EINVAL;
goto err_addr_to_resource;
}