mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-26 20:44:32 +08:00
thermal/drivers/brcmstb_thermal: 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: ye xingchen <ye.xingchen@zte.com.cn> Acked-by: Florian Fainelli <f.fainelli@gmail.com> Link: https://lore.kernel.org/r/202301181631362083446@zte.com.cn Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
This commit is contained in:
parent
5618f1bee2
commit
780e220dc6
@ -321,7 +321,6 @@ static int brcmstb_thermal_probe(struct platform_device *pdev)
|
|||||||
const struct thermal_zone_device_ops *of_ops;
|
const struct thermal_zone_device_ops *of_ops;
|
||||||
struct thermal_zone_device *thermal;
|
struct thermal_zone_device *thermal;
|
||||||
struct brcmstb_thermal_priv *priv;
|
struct brcmstb_thermal_priv *priv;
|
||||||
struct resource *res;
|
|
||||||
int irq, ret;
|
int irq, ret;
|
||||||
|
|
||||||
priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
|
priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
|
||||||
@ -332,8 +331,7 @@ static int brcmstb_thermal_probe(struct platform_device *pdev)
|
|||||||
if (!priv->temp_params)
|
if (!priv->temp_params)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
priv->tmon_base = devm_platform_get_and_ioremap_resource(pdev, 0, NULL);
|
||||||
priv->tmon_base = devm_ioremap_resource(&pdev->dev, res);
|
|
||||||
if (IS_ERR(priv->tmon_base))
|
if (IS_ERR(priv->tmon_base))
|
||||||
return PTR_ERR(priv->tmon_base);
|
return PTR_ERR(priv->tmon_base);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user