From: Cai Huoqing Date: Wed, 1 Sep 2021 05:56:01 +0000 (+0200) Subject: media: s5p-g2d: Make use of the helper function devm_platform_ioremap_resource() X-Git-Tag: v5.16-rc1~173^2~185 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=beaa81f410ba97a032ae84b5c9c5472a8372ec1e;p=thirdparty%2Fkernel%2Flinux.git media: s5p-g2d: Make use of the helper function devm_platform_ioremap_resource() Use the devm_platform_ioremap_resource() helper instead of calling platform_get_resource() and devm_ioremap_resource() separately Signed-off-by: Cai Huoqing Signed-off-by: Hans Verkuil Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/platform/s5p-g2d/g2d.c b/drivers/media/platform/s5p-g2d/g2d.c index 1cb5eaabf340b..fa0bb31bd2b97 100644 --- a/drivers/media/platform/s5p-g2d/g2d.c +++ b/drivers/media/platform/s5p-g2d/g2d.c @@ -635,9 +635,7 @@ static int g2d_probe(struct platform_device *pdev) mutex_init(&dev->mutex); atomic_set(&dev->num_inst, 0); - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); - - dev->regs = devm_ioremap_resource(&pdev->dev, res); + dev->regs = devm_platform_ioremap_resource(pdev, 0); if (IS_ERR(dev->regs)) return PTR_ERR(dev->regs);