* [PATCH] clk: use devm_platform_get_and_ioremap_resource()
@ 2022-11-22 1:48 ye.xingchen
2022-12-09 20:25 ` Stephen Boyd
0 siblings, 1 reply; 2+ messages in thread
From: ye.xingchen @ 2022-11-22 1:48 UTC (permalink / raw)
To: mani
Cc: mturquette, sboyd, linux-arm-kernel, linux-clk, linux-kernel,
chi.minghao
From: Minghao Chi <chi.minghao@zte.com.cn>
Convert platform_get_resource(), devm_ioremap_resource() to a single
call to devm_platform_get_and_ioremap_resource(), as this is exactly
what this function does.
Signed-off-by: Minghao Chi <chi.minghao@zte.com.cn>
Signed-off-by: ye xingchen <ye.xingchen@zte.com.cn>
---
drivers/clk/clk-bm1880.c | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/drivers/clk/clk-bm1880.c b/drivers/clk/clk-bm1880.c
index fad78a22218e..1013be67254b 100644
--- a/drivers/clk/clk-bm1880.c
+++ b/drivers/clk/clk-bm1880.c
@@ -876,16 +876,13 @@ static int bm1880_clk_probe(struct platform_device *pdev)
struct bm1880_clock_data *clk_data;
void __iomem *pll_base, *sys_base;
struct device *dev = &pdev->dev;
- struct resource *res;
int num_clks, i;
- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- pll_base = devm_ioremap_resource(&pdev->dev, res);
+ pll_base = devm_platform_get_and_ioremap_resource(pdev, 0, NULL);
if (IS_ERR(pll_base))
return PTR_ERR(pll_base);
- res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
- sys_base = devm_ioremap_resource(&pdev->dev, res);
+ sys_base = devm_platform_get_and_ioremap_resource(pdev, 1, NULL);
if (IS_ERR(sys_base))
return PTR_ERR(sys_base);
--
2.25.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] clk: use devm_platform_get_and_ioremap_resource()
2022-11-22 1:48 [PATCH] clk: use devm_platform_get_and_ioremap_resource() ye.xingchen
@ 2022-12-09 20:25 ` Stephen Boyd
0 siblings, 0 replies; 2+ messages in thread
From: Stephen Boyd @ 2022-12-09 20:25 UTC (permalink / raw)
To: mani, ye.xingchen
Cc: mturquette, linux-arm-kernel, linux-clk, linux-kernel,
chi.minghao
Quoting ye.xingchen@zte.com.cn (2022-11-21 17:48:41)
> From: Minghao Chi <chi.minghao@zte.com.cn>
>
> Convert platform_get_resource(), devm_ioremap_resource() to a single
> call to devm_platform_get_and_ioremap_resource(), as this is exactly
> what this function does.
>
> Signed-off-by: Minghao Chi <chi.minghao@zte.com.cn>
> Signed-off-by: ye xingchen <ye.xingchen@zte.com.cn>
Please fix the subject.
$ git log --oneline -2 -- drivers/clk/clk-bm1880.c
c861c1be3897 clk: bm1880: remove kfrees on static allocations
59ef4da4e408 clk: bm1800: Remove set but not used variable 'fref'
And then get Mani to ack it.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-12-09 20:25 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-22 1:48 [PATCH] clk: use devm_platform_get_and_ioremap_resource() ye.xingchen
2022-12-09 20:25 ` Stephen Boyd
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).