提交 f8887fdc 编写于 作者: Y ye xingchen 提交者: Daniel Lezcano

thermal/drivers/spear: Use devm_platform_get_and_ioremap_resource()

Convert platform_get_resource(), devm_ioremap_resource() to a single
call to devm_platform_get_and_ioremap_resource(), as this is exactly
what this function does.
Signed-off-by: Nye xingchen <ye.xingchen@zte.com.cn>
Link: https://lore.kernel.org/r/202301181644433003839@zte.com.cnSigned-off-by: NDaniel Lezcano <daniel.lezcano@linaro.org>
上级 821e4309
...@@ -91,7 +91,6 @@ static int spear_thermal_probe(struct platform_device *pdev) ...@@ -91,7 +91,6 @@ static int spear_thermal_probe(struct platform_device *pdev)
struct thermal_zone_device *spear_thermal = NULL; struct thermal_zone_device *spear_thermal = NULL;
struct spear_thermal_dev *stdev; struct spear_thermal_dev *stdev;
struct device_node *np = pdev->dev.of_node; struct device_node *np = pdev->dev.of_node;
struct resource *res;
int ret = 0, val; int ret = 0, val;
if (!np || !of_property_read_u32(np, "st,thermal-flags", &val)) { if (!np || !of_property_read_u32(np, "st,thermal-flags", &val)) {
...@@ -104,8 +103,7 @@ static int spear_thermal_probe(struct platform_device *pdev) ...@@ -104,8 +103,7 @@ static int spear_thermal_probe(struct platform_device *pdev)
return -ENOMEM; return -ENOMEM;
/* Enable thermal sensor */ /* Enable thermal sensor */
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); stdev->thermal_base = devm_platform_get_and_ioremap_resource(pdev, 0, NULL);
stdev->thermal_base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(stdev->thermal_base)) if (IS_ERR(stdev->thermal_base))
return PTR_ERR(stdev->thermal_base); return PTR_ERR(stdev->thermal_base);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册