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

iio: 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: Minghao Chi <chi.minghao@zte.com.cn>
Signed-off-by: ye xingchen <ye.xingchen@zte.com.cn>
Reviewed-by: Nuno Sá <nuno.sa@analog.com>
Link: https://lore.kernel.org/r/202211220935338446115@zte.com.cn
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>

authored by

Minghao Chi and committed by
Jonathan Cameron
8aa2e715 c613afc1

+1 -2
+1 -2
drivers/iio/adc/ad7606_par.c
··· 57 57 if (irq < 0) 58 58 return irq; 59 59 60 - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 61 - addr = devm_ioremap_resource(&pdev->dev, res); 60 + addr = devm_platform_get_and_ioremap_resource(pdev, 0, &res); 62 61 if (IS_ERR(addr)) 63 62 return PTR_ERR(addr); 64 63