diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2021-03-05 03:49:33 +0000 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2021-03-30 23:35:17 +0530 |
commit | 446c200ee3e8f6faf189ef6f25a0f5bb294afae4 (patch) | |
tree | 85a1db0016ada0fa2cc11489a112273effb8064f /drivers/phy/ingenic | |
parent | b976c987511e34a2e9b23545de912a121a9eded5 (diff) |
phy: ingenic: Fix a typo in ingenic_usb_phy_probe()
Fix the return value check typo which testing the wrong variable
in ingenic_usb_phy_probe().
Fixes: 31de313dfdcf ("PHY: Ingenic: Add USB PHY driver using generic PHY framework.")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Acked-by: Paul Cercueil <paul@crapouillou.net>
Link: https://lore.kernel.org/r/20210305034933.3240914-1-weiyongjun1@huawei.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/phy/ingenic')
-rw-r--r-- | drivers/phy/ingenic/phy-ingenic-usb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/phy/ingenic/phy-ingenic-usb.c b/drivers/phy/ingenic/phy-ingenic-usb.c index ea127b177f46..28c28d816484 100644 --- a/drivers/phy/ingenic/phy-ingenic-usb.c +++ b/drivers/phy/ingenic/phy-ingenic-usb.c @@ -352,8 +352,8 @@ static int ingenic_usb_phy_probe(struct platform_device *pdev) } priv->phy = devm_phy_create(dev, NULL, &ingenic_usb_phy_ops); - if (IS_ERR(priv)) - return PTR_ERR(priv); + if (IS_ERR(priv->phy)) + return PTR_ERR(priv->phy); phy_set_drvdata(priv->phy, priv); |