[media] omap3isp: Use devm_ioremap_resource()
Replace devm_request_mem_region() and devm_ioremap_nocache() with devm_ioremap_resource(). The behaviour remains the same and the code is simplified. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Acked-by: Sakari Ailus <sakari.ailus@iki.fi> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
Родитель
f8e2ff2621
Коммит
fd8308b42c
|
@ -2130,28 +2130,13 @@ static int isp_map_mem_resource(struct platform_device *pdev,
|
|||
/* request the mem region for the camera registers */
|
||||
|
||||
mem = platform_get_resource(pdev, IORESOURCE_MEM, res);
|
||||
if (!mem) {
|
||||
dev_err(isp->dev, "no mem resource?\n");
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
if (!devm_request_mem_region(isp->dev, mem->start, resource_size(mem),
|
||||
pdev->name)) {
|
||||
dev_err(isp->dev,
|
||||
"cannot reserve camera register I/O region\n");
|
||||
return -ENODEV;
|
||||
}
|
||||
isp->mmio_base_phys[res] = mem->start;
|
||||
isp->mmio_size[res] = resource_size(mem);
|
||||
|
||||
/* map the region */
|
||||
isp->mmio_base[res] = devm_ioremap_nocache(isp->dev,
|
||||
isp->mmio_base_phys[res],
|
||||
isp->mmio_size[res]);
|
||||
if (!isp->mmio_base[res]) {
|
||||
dev_err(isp->dev, "cannot map camera register I/O region\n");
|
||||
return -ENODEV;
|
||||
}
|
||||
isp->mmio_base[res] = devm_ioremap_resource(isp->dev, mem);
|
||||
if (IS_ERR(isp->mmio_base[res]))
|
||||
return PTR_ERR(isp->mmio_base[res]);
|
||||
|
||||
isp->mmio_base_phys[res] = mem->start;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -152,7 +152,6 @@ struct isp_xclk {
|
|||
* regions.
|
||||
* @mmio_base_phys: Array with physical L4 bus addresses for ISP register
|
||||
* regions.
|
||||
* @mmio_size: Array with ISP register regions size in bytes.
|
||||
* @stat_lock: Spinlock for handling statistics
|
||||
* @isp_mutex: Mutex for serializing requests to ISP.
|
||||
* @crashed: Bitmask of crashed entities (indexed by entity ID)
|
||||
|
@ -188,7 +187,6 @@ struct isp_device {
|
|||
|
||||
void __iomem *mmio_base[OMAP3_ISP_IOMEM_LAST];
|
||||
unsigned long mmio_base_phys[OMAP3_ISP_IOMEM_LAST];
|
||||
resource_size_t mmio_size[OMAP3_ISP_IOMEM_LAST];
|
||||
|
||||
/* ISP Obj */
|
||||
spinlock_t stat_lock; /* common lock for statistic drivers */
|
||||
|
|
Загрузка…
Ссылка в новой задаче