Commit d9bd707c authored by Cai Huoqing's avatar Cai Huoqing Committed by Mauro Carvalho Chehab

media: exynos-gsc: 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: default avatarCai Huoqing <caihuoqing@baidu.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent bcbeade1
...@@ -1137,8 +1137,7 @@ static int gsc_probe(struct platform_device *pdev) ...@@ -1137,8 +1137,7 @@ static int gsc_probe(struct platform_device *pdev)
spin_lock_init(&gsc->slock); spin_lock_init(&gsc->slock);
mutex_init(&gsc->lock); mutex_init(&gsc->lock);
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); gsc->regs = devm_platform_ioremap_resource(pdev, 0);
gsc->regs = devm_ioremap_resource(dev, res);
if (IS_ERR(gsc->regs)) if (IS_ERR(gsc->regs))
return PTR_ERR(gsc->regs); return PTR_ERR(gsc->regs);
......
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