Skip to content

Commit

Permalink
ASoC: jz4740-i2s: Use devm_platform_get_and_ioremap_resource()
Browse files Browse the repository at this point in the history
Use devm_platform_get_and_ioremap_resource() to simplify
code.

Signed-off-by: Yang Yingliang <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
  • Loading branch information
Yang Yingliang authored and broonie committed Jun 15, 2021
1 parent 942f267 commit 50484d1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sound/soc/jz4740/jz4740-i2s.c
Original file line number Diff line number Diff line change
Expand Up @@ -525,8 +525,7 @@ static int jz4740_i2s_dev_probe(struct platform_device *pdev)

i2s->soc_info = device_get_match_data(dev);

mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
i2s->base = devm_ioremap_resource(dev, mem);
i2s->base = devm_platform_get_and_ioremap_resource(pdev, 0, &mem);
if (IS_ERR(i2s->base))
return PTR_ERR(i2s->base);

Expand Down

0 comments on commit 50484d1

Please sign in to comment.