projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
180a49e
)
drm/imx: imx-tve: Make use of the helper function devm_platform_ioremap_resource()
author
Cai Huoqing
<caihuoqing@baidu.com>
Tue, 31 Aug 2021 13:55:52 +0000
(21:55 +0800)
committer
Philipp Zabel
<p.zabel@pengutronix.de>
Mon, 4 Apr 2022 07:34:20 +0000
(09:34 +0200)
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>
Link:
https://lore.kernel.org/r/20210831135553.4426-1-caihuoqing@baidu.com
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
drivers/gpu/drm/imx/imx-tve.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/imx/imx-tve.c
b/drivers/gpu/drm/imx/imx-tve.c
index bc8c3f802a1529a21eda3dc9ad65513d64fec068..2b1fdf2cbbce1db65a519bd5a210fe16e0a72949 100644
(file)
--- a/
drivers/gpu/drm/imx/imx-tve.c
+++ b/
drivers/gpu/drm/imx/imx-tve.c
@@
-526,7
+526,6
@@
static int imx_tve_probe(struct platform_device *pdev)
struct device_node *np = dev->of_node;
struct device_node *ddc_node;
struct imx_tve *tve;
- struct resource *res;
void __iomem *base;
unsigned int val;
int irq;
@@
-568,8
+567,7
@@
static int imx_tve_probe(struct platform_device *pdev)
}
}
- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- base = devm_ioremap_resource(dev, res);
+ base = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(base))
return PTR_ERR(base);