Commit f359c3e5 authored by Minghao Chi's avatar Minghao Chi Committed by Lee Jones

mfd: stm32-lptimer: 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 avatarMinghao Chi <chi.minghao@zte.com.cn>
Signed-off-by: default avatarye xingchen <ye.xingchen@zte.com.cn>
Signed-off-by: default avatarLee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/202211220945587336502@zte.com.cn
parent 959ecba7
...@@ -52,7 +52,6 @@ static int stm32_lptimer_probe(struct platform_device *pdev) ...@@ -52,7 +52,6 @@ static int stm32_lptimer_probe(struct platform_device *pdev)
{ {
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct stm32_lptimer *ddata; struct stm32_lptimer *ddata;
struct resource *res;
void __iomem *mmio; void __iomem *mmio;
int ret; int ret;
...@@ -60,8 +59,7 @@ static int stm32_lptimer_probe(struct platform_device *pdev) ...@@ -60,8 +59,7 @@ static int stm32_lptimer_probe(struct platform_device *pdev)
if (!ddata) if (!ddata)
return -ENOMEM; return -ENOMEM;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); mmio = devm_platform_get_and_ioremap_resource(pdev, 0, NULL);
mmio = devm_ioremap_resource(dev, res);
if (IS_ERR(mmio)) if (IS_ERR(mmio))
return PTR_ERR(mmio); return PTR_ERR(mmio);
......
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