Staging: media: Unmap and release region obtained by ioremap_nocache
Free memory mapping, if vpfe_ipipe_init is not successful. Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
7369e062fd
commit
4b4eda0017
|
@ -1803,14 +1803,14 @@ vpfe_ipipe_init(struct vpfe_ipipe_device *ipipe, struct platform_device *pdev)
|
|||
return -EBUSY;
|
||||
ipipe->base_addr = ioremap_nocache(res->start, res_len);
|
||||
if (!ipipe->base_addr)
|
||||
return -EBUSY;
|
||||
goto error_release;
|
||||
|
||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 6);
|
||||
if (!res)
|
||||
return -ENOENT;
|
||||
goto error_unmap;
|
||||
ipipe->isp5_base_addr = ioremap_nocache(res->start, res_len);
|
||||
if (!ipipe->isp5_base_addr)
|
||||
return -EBUSY;
|
||||
goto error_unmap;
|
||||
|
||||
v4l2_subdev_init(sd, &ipipe_v4l2_ops);
|
||||
sd->internal_ops = &ipipe_v4l2_internal_ops;
|
||||
|
@ -1839,6 +1839,12 @@ vpfe_ipipe_init(struct vpfe_ipipe_device *ipipe, struct platform_device *pdev)
|
|||
sd->ctrl_handler = &ipipe->ctrls;
|
||||
|
||||
return media_entity_pads_init(me, IPIPE_PADS_NUM, pads);
|
||||
|
||||
error_unmap:
|
||||
iounmap(ipipe->base_addr);
|
||||
error_release:
|
||||
release_mem_region(res->start, res_len);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue