aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/phy
diff options
context:
space:
mode:
authorChunfeng Yun <chunfeng.yun@mediatek.com>2021-08-17 17:19:46 +0800
committerVinod Koul <vkoul@kernel.org>2021-08-17 15:51:59 +0530
commit75203e7994feedc52c62eb42f6b7a7087145813b (patch)
tree7588acdd4988e8f2b782610f461b5f5e82055ad8 /drivers/phy
parentphy: phy-mtk-hdmi: convert to devm_platform_ioremap_resource (diff)
downloadlinux-dev-75203e7994feedc52c62eb42f6b7a7087145813b.tar.xz
linux-dev-75203e7994feedc52c62eb42f6b7a7087145813b.zip
phy: phy-mtk-mipi-dsi: remove dummy assignment of error number
Return the error number directly without assignment Acked-by: Chun-Kuang Hu <chunkuang.hu@kernel.org> Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com> Link: https://lore.kernel.org/r/1629191987-20774-8-git-send-email-chunfeng.yun@mediatek.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/phy')
-rw-r--r--drivers/phy/mediatek/phy-mtk-mipi-dsi.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/phy/mediatek/phy-mtk-mipi-dsi.c b/drivers/phy/mediatek/phy-mtk-mipi-dsi.c
index 01cf31633019..61c942fbf4a1 100644
--- a/drivers/phy/mediatek/phy-mtk-mipi-dsi.c
+++ b/drivers/phy/mediatek/phy-mtk-mipi-dsi.c
@@ -203,10 +203,8 @@ static int mtk_mipi_tx_probe(struct platform_device *pdev)
phy_set_drvdata(phy, mipi_tx);
phy_provider = devm_of_phy_provider_register(dev, of_phy_simple_xlate);
- if (IS_ERR(phy_provider)) {
- ret = PTR_ERR(phy_provider);
- return ret;
- }
+ if (IS_ERR(phy_provider))
+ return PTR_ERR(phy_provider);
mipi_tx->dev = dev;