phy: qcom-ufs: Don't return error if fail to get optional resource
"dev_ref_clk_ctrl_mem" is optional resource, so don't return error if fail to get the resource. Since it's an optional resource, don't emit error if fail to get dev_ref_clk_ctrl_mem. Also remove redundant test for res, it's done by devm_ioremap_resource(). Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
This commit is contained in:
Родитель
358d6c87e7
Коммит
52ea796b91
|
@ -135,40 +135,23 @@ int ufs_qcom_phy_base_init(struct platform_device *pdev,
|
||||||
int err = 0;
|
int err = 0;
|
||||||
|
|
||||||
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "phy_mem");
|
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "phy_mem");
|
||||||
if (!res) {
|
|
||||||
dev_err(dev, "%s: phy_mem resource not found\n", __func__);
|
|
||||||
err = -ENOMEM;
|
|
||||||
goto out;
|
|
||||||
}
|
|
||||||
|
|
||||||
phy_common->mmio = devm_ioremap_resource(dev, res);
|
phy_common->mmio = devm_ioremap_resource(dev, res);
|
||||||
if (IS_ERR((void const *)phy_common->mmio)) {
|
if (IS_ERR((void const *)phy_common->mmio)) {
|
||||||
err = PTR_ERR((void const *)phy_common->mmio);
|
err = PTR_ERR((void const *)phy_common->mmio);
|
||||||
phy_common->mmio = NULL;
|
phy_common->mmio = NULL;
|
||||||
dev_err(dev, "%s: ioremap for phy_mem resource failed %d\n",
|
dev_err(dev, "%s: ioremap for phy_mem resource failed %d\n",
|
||||||
__func__, err);
|
__func__, err);
|
||||||
goto out;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* "dev_ref_clk_ctrl_mem" is optional resource */
|
/* "dev_ref_clk_ctrl_mem" is optional resource */
|
||||||
res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
|
res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
|
||||||
"dev_ref_clk_ctrl_mem");
|
"dev_ref_clk_ctrl_mem");
|
||||||
if (!res) {
|
|
||||||
dev_dbg(dev, "%s: dev_ref_clk_ctrl_mem resource not found\n",
|
|
||||||
__func__);
|
|
||||||
goto out;
|
|
||||||
}
|
|
||||||
|
|
||||||
phy_common->dev_ref_clk_ctrl_mmio = devm_ioremap_resource(dev, res);
|
phy_common->dev_ref_clk_ctrl_mmio = devm_ioremap_resource(dev, res);
|
||||||
if (IS_ERR((void const *)phy_common->dev_ref_clk_ctrl_mmio)) {
|
if (IS_ERR((void const *)phy_common->dev_ref_clk_ctrl_mmio))
|
||||||
err = PTR_ERR((void const *)phy_common->dev_ref_clk_ctrl_mmio);
|
|
||||||
phy_common->dev_ref_clk_ctrl_mmio = NULL;
|
phy_common->dev_ref_clk_ctrl_mmio = NULL;
|
||||||
dev_err(dev, "%s: ioremap for dev_ref_clk_ctrl_mem resource failed %d\n",
|
|
||||||
__func__, err);
|
|
||||||
}
|
|
||||||
|
|
||||||
out:
|
return 0;
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __ufs_qcom_phy_clk_get(struct phy *phy,
|
static int __ufs_qcom_phy_clk_get(struct phy *phy,
|
||||||
|
|
Загрузка…
Ссылка в новой задаче