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: Cai Huoqing <caihuoqing@baidu.com> Acked-by: Andrzej Pietrasiewicz <andrzejtp2010@gmail.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
beaa81f410
commit
d084438d23
1 changed files with 1 additions and 4 deletions
|
@ -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)
|
||||||
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);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue