Commit d084438d authored by Cai Huoqing's avatar Cai Huoqing Committed by Mauro Carvalho Chehab

media: s5p-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: default avatarCai Huoqing <caihuoqing@baidu.com>
Acked-by: default avatarAndrzej Pietrasiewicz <andrzejtp2010@gmail.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent beaa81f4
...@@ -2850,7 +2850,6 @@ static void *jpeg_get_drv_data(struct device *dev); ...@@ -2850,7 +2850,6 @@ static void *jpeg_get_drv_data(struct device *dev);
static int s5p_jpeg_probe(struct platform_device *pdev) static int s5p_jpeg_probe(struct platform_device *pdev)
{ {
struct s5p_jpeg *jpeg; struct s5p_jpeg *jpeg;
struct resource *res;
int i, ret; int i, ret;
/* JPEG IP abstraction struct */ /* JPEG IP abstraction struct */
...@@ -2867,9 +2866,7 @@ static int s5p_jpeg_probe(struct platform_device *pdev) ...@@ -2867,9 +2866,7 @@ static int s5p_jpeg_probe(struct platform_device *pdev)
jpeg->dev = &pdev->dev; jpeg->dev = &pdev->dev;
/* memory-mapped registers */ /* memory-mapped registers */
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); jpeg->regs = devm_platform_ioremap_resource(pdev, 0);
jpeg->regs = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(jpeg->regs)) if (IS_ERR(jpeg->regs))
return PTR_ERR(jpeg->regs); return PTR_ERR(jpeg->regs);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment