Commit 102be2c2 authored by Ye Xingchen's avatar Ye Xingchen Committed by Guenter Roeck

hwmon: (gxp-fan-ctrl) 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: default avatarYe Xingchen <ye.xingchen@zte.com.cn>
Link: https://lore.kernel.org/r/202302081546067270324@zte.com.cnSigned-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent 7505dab7
...@@ -199,7 +199,6 @@ static const struct hwmon_chip_info gxp_fan_ctrl_chip_info = { ...@@ -199,7 +199,6 @@ static const struct hwmon_chip_info gxp_fan_ctrl_chip_info = {
static int gxp_fan_ctrl_probe(struct platform_device *pdev) static int gxp_fan_ctrl_probe(struct platform_device *pdev)
{ {
struct gxp_fan_ctrl_drvdata *drvdata; struct gxp_fan_ctrl_drvdata *drvdata;
struct resource *res;
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct device *hwmon_dev; struct device *hwmon_dev;
...@@ -208,8 +207,7 @@ static int gxp_fan_ctrl_probe(struct platform_device *pdev) ...@@ -208,8 +207,7 @@ static int gxp_fan_ctrl_probe(struct platform_device *pdev)
if (!drvdata) if (!drvdata)
return -ENOMEM; return -ENOMEM;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); drvdata->base = devm_platform_get_and_ioremap_resource(pdev, 0, NULL);
drvdata->base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(drvdata->base)) if (IS_ERR(drvdata->base))
return dev_err_probe(dev, PTR_ERR(drvdata->base), return dev_err_probe(dev, PTR_ERR(drvdata->base),
"failed to map base\n"); "failed to map base\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment