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:
12a63c0
)
ASoC: meson: g12a-tohdmitx: use devm_platform_ioremap_resource() to simplify code
author
YueHaibing
<yuehaibing@huawei.com>
Sat, 27 Jul 2019 15:07:29 +0000
(23:07 +0800)
committer
Mark Brown
<broonie@kernel.org>
Wed, 31 Jul 2019 11:12:34 +0000
(12:12 +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-26-yuehaibing@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/meson/g12a-tohdmitx.c
patch
|
blob
|
history
diff --git
a/sound/soc/meson/g12a-tohdmitx.c
b/sound/soc/meson/g12a-tohdmitx.c
index 9943c807ec5d7a34a8e7e7d425024ed008674105..9cfbd343a00c86c1d3e80b72dc0ad799c4423f72 100644
(file)
--- a/
sound/soc/meson/g12a-tohdmitx.c
+++ b/
sound/soc/meson/g12a-tohdmitx.c
@@
-376,12
+376,10
@@
MODULE_DEVICE_TABLE(of, g12a_tohdmitx_of_match);
static int g12a_tohdmitx_probe(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
- struct resource *res;
void __iomem *regs;
struct regmap *map;
- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- regs = devm_ioremap_resource(dev, res);
+ regs = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(regs))
return PTR_ERR(regs);