mirror of
https://github.com/torvalds/linux.git
synced 2024-12-25 20:32:22 +00:00
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 <caihuoqing@baidu.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
8db05a69f1
commit
beaa81f410
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user