Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

reset: brcmstb-rescal: Use devm_platform_ioremap_resource()

Convert platform_get_resource(), devm_ioremap_resource() to a single
call to Use devm_platform_ioremap_resource(), as this is exactly
what this function does.

Suggested-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Ye Xingchen <ye.xingchen@zte.com.cn>
Acked-by: Florian Fainelli <f.fainelli@gmail.com>
Link: https://lore.kernel.org/r/202302161052126378140@zte.com.cn
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>

authored by

Ye Xingchen and committed by
Philipp Zabel
fdcfdb23 cabf1ce3

+1 -3
+1 -3
drivers/reset/reset-brcmstb-rescal.c
··· 66 66 static int brcm_rescal_reset_probe(struct platform_device *pdev) 67 67 { 68 68 struct brcm_rescal_reset *data; 69 - struct resource *res; 70 69 71 70 data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); 72 71 if (!data) 73 72 return -ENOMEM; 74 73 75 - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 76 - data->base = devm_ioremap_resource(&pdev->dev, res); 74 + data->base = devm_platform_ioremap_resource(pdev, 0); 77 75 if (IS_ERR(data->base)) 78 76 return PTR_ERR(data->base); 79 77