mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 12:56:41 +07:00
media: coda: Use devm_platform_ioremap_resource()
Use devm_platform_ioremap_resource() to simplify the code a bit. Signed-off-by: Fabio Estevam <festevam@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
parent
1a9ade50b8
commit
56202c0cbe
@ -2814,7 +2814,6 @@ static int coda_probe(struct platform_device *pdev)
|
||||
struct device_node *np = pdev->dev.of_node;
|
||||
struct gen_pool *pool;
|
||||
struct coda_dev *dev;
|
||||
struct resource *res;
|
||||
int ret, irq;
|
||||
|
||||
dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
|
||||
@ -2846,8 +2845,7 @@ static int coda_probe(struct platform_device *pdev)
|
||||
}
|
||||
|
||||
/* Get memory for physical registers */
|
||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
dev->regs_base = devm_ioremap_resource(&pdev->dev, res);
|
||||
dev->regs_base = devm_platform_ioremap_resource(pdev, 0);
|
||||
if (IS_ERR(dev->regs_base))
|
||||
return PTR_ERR(dev->regs_base);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user