media: xilinx: 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
a24973a605
commit
e0bee54288
@ -205,10 +205,8 @@ EXPORT_SYMBOL_GPL(xvip_clr_and_set);
|
||||
int xvip_init_resources(struct xvip_device *xvip)
|
||||
{
|
||||
struct platform_device *pdev = to_platform_device(xvip->dev);
|
||||
struct resource *res;
|
||||
|
||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
xvip->iomem = devm_ioremap_resource(xvip->dev, res);
|
||||
xvip->iomem = devm_platform_ioremap_resource(pdev, 0);
|
||||
if (IS_ERR(xvip->iomem))
|
||||
return PTR_ERR(xvip->iomem);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user