phy: phy-mtk-hdmi: Remove redundant dev_err call in mtk_hdmi_phy_probe()
authorHe Ying <heying24@huawei.com>
Thu, 8 Apr 2021 11:55:30 +0000 (07:55 -0400)
committerVinod Koul <vkoul@kernel.org>
Mon, 14 Jun 2021 05:33:08 +0000 (11:03 +0530)
There is a error message within devm_ioremap_resource
already, so remove the dev_err call to avoid redundant
error message.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: He Ying <heying24@huawei.com>
Reviewed-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
Link: https://lore.kernel.org/r/20210408115530.15673-1-heying24@huawei.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/phy/mediatek/phy-mtk-hdmi.c

index 8313bd5..8ad8f71 100644 (file)
@@ -119,9 +119,7 @@ static int mtk_hdmi_phy_probe(struct platform_device *pdev)
        mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
        hdmi_phy->regs = devm_ioremap_resource(dev, mem);
        if (IS_ERR(hdmi_phy->regs)) {
-               ret = PTR_ERR(hdmi_phy->regs);
-               dev_err(dev, "Failed to get memory resource: %d\n", ret);
-               return ret;
+               return PTR_ERR(hdmi_phy->regs);
        }
 
        ref_clk = devm_clk_get(dev, "pll_ref");