提交 3ea981ed 编写于 作者: J Julia Lawall 提交者: Kishon Vijay Abraham I

phy: qcom-ufs: use of_property_read_bool

Use of_property_read_bool to check for the existence of a property.

The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@@
expression e1,e2,x;
@@
-	if (of_get_property(e1,e2,NULL))
-		x = true;
-	else
-		x = false;
+	x = of_property_read_bool(e1,e2);
// </smpl>
Signed-off-by: NJulia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: NKishon Vijay Abraham I <kishon@ti.com>
上级 e5666281
...@@ -283,10 +283,8 @@ static int __ufs_qcom_phy_init_vreg(struct phy *phy, ...@@ -283,10 +283,8 @@ static int __ufs_qcom_phy_init_vreg(struct phy *phy,
err = 0; err = 0;
} }
snprintf(prop_name, MAX_PROP_NAME, "%s-always-on", name); snprintf(prop_name, MAX_PROP_NAME, "%s-always-on", name);
if (of_get_property(dev->of_node, prop_name, NULL)) vreg->is_always_on = of_property_read_bool(dev->of_node,
vreg->is_always_on = true; prop_name);
else
vreg->is_always_on = false;
} }
if (!strcmp(name, "vdda-pll")) { if (!strcmp(name, "vdda-pll")) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册