projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4e5bc35
)
ASoC: uniphier: aio-dma: use devm_platform_ioremap_resource() to simplify code
author
YueHaibing
<yuehaibing@huawei.com>
Sat, 27 Jul 2019 15:07:26 +0000
(23:07 +0800)
committer
Mark Brown
<broonie@kernel.org>
Wed, 31 Jul 2019 11:11:58 +0000
(12:11 +0100)
Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Link:
https://lore.kernel.org/r/20190727150738.54764-23-yuehaibing@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/uniphier/aio-dma.c
patch
|
blob
|
history
diff --git
a/sound/soc/uniphier/aio-dma.c
b/sound/soc/uniphier/aio-dma.c
index fa001d3c1a88705e729a2db401583067c52cd3fd..862346d667741cdb623b1b9e379bf45e1d983f3c 100644
(file)
--- a/
sound/soc/uniphier/aio-dma.c
+++ b/
sound/soc/uniphier/aio-dma.c
@@
-276,12
+276,10
@@
int uniphier_aiodma_soc_register_platform(struct platform_device *pdev)
{
struct uniphier_aio_chip *chip = platform_get_drvdata(pdev);
struct device *dev = &pdev->dev;
- struct resource *res;
void __iomem *preg;
int irq, ret;
- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- preg = devm_ioremap_resource(dev, res);
+ preg = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(preg))
return PTR_ERR(preg);