mirror of
https://github.com/torvalds/linux.git
synced 2026-06-04 12:35:52 +02:00
media: imx-jpeg: 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
f5202ccb67
commit
a498a4e7af
|
|
@ -1959,7 +1959,6 @@ static int mxc_jpeg_probe(struct platform_device *pdev)
|
|||
{
|
||||
struct mxc_jpeg_dev *jpeg;
|
||||
struct device *dev = &pdev->dev;
|
||||
struct resource *res;
|
||||
int dec_irq;
|
||||
int ret;
|
||||
int mode;
|
||||
|
|
@ -1982,8 +1981,7 @@ static int mxc_jpeg_probe(struct platform_device *pdev)
|
|||
goto err_irq;
|
||||
}
|
||||
|
||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
jpeg->base_reg = devm_ioremap_resource(&pdev->dev, res);
|
||||
jpeg->base_reg = devm_platform_ioremap_resource(pdev, 0);
|
||||
if (IS_ERR(jpeg->base_reg))
|
||||
return PTR_ERR(jpeg->base_reg);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user