* [PATCH] mfd: hi6421-pmic: use devm_platform_get_and_ioremap_resource()
@ 2023-02-08 9:33 ye.xingchen
2023-03-03 8:19 ` Lee Jones
0 siblings, 1 reply; 2+ messages in thread
From: ye.xingchen @ 2023-02-08 9:33 UTC (permalink / raw)
To: lee; +Cc: linux-kernel
From: Ye Xingchen <ye.xingchen@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: Ye Xingchen <ye.xingchen@zte.com.cn>
---
drivers/mfd/hi6421-pmic-core.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/drivers/mfd/hi6421-pmic-core.c b/drivers/mfd/hi6421-pmic-core.c
index eba88b80d969..cb5cf4a81c06 100644
--- a/drivers/mfd/hi6421-pmic-core.c
+++ b/drivers/mfd/hi6421-pmic-core.c
@@ -50,7 +50,6 @@ MODULE_DEVICE_TABLE(of, of_hi6421_pmic_match);
static int hi6421_pmic_probe(struct platform_device *pdev)
{
struct hi6421_pmic *pmic;
- struct resource *res;
const struct of_device_id *id;
const struct mfd_cell *subdevs;
enum hi6421_type type;
@@ -66,8 +65,7 @@ static int hi6421_pmic_probe(struct platform_device *pdev)
if (!pmic)
return -ENOMEM;
- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- base = devm_ioremap_resource(&pdev->dev, res);
+ base = devm_platform_get_and_ioremap_resource(pdev, 0, NULL);
if (IS_ERR(base))
return PTR_ERR(base);
--
2.25.1
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] mfd: hi6421-pmic: use devm_platform_get_and_ioremap_resource()
2023-02-08 9:33 [PATCH] mfd: hi6421-pmic: use devm_platform_get_and_ioremap_resource() ye.xingchen
@ 2023-03-03 8:19 ` Lee Jones
0 siblings, 0 replies; 2+ messages in thread
From: Lee Jones @ 2023-03-03 8:19 UTC (permalink / raw)
To: ye.xingchen; +Cc: linux-kernel
On Wed, 08 Feb 2023, ye.xingchen@zte.com.cn wrote:
> From: Ye Xingchen <ye.xingchen@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: Ye Xingchen <ye.xingchen@zte.com.cn>
> ---
> drivers/mfd/hi6421-pmic-core.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
Next time, could you please submit these as a set? It makes it easier
to apply them than having lots of completely separate patches.
Applied, thanks
--
Lee Jones [李琼斯]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-03-03 8:20 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-08 9:33 [PATCH] mfd: hi6421-pmic: use devm_platform_get_and_ioremap_resource() ye.xingchen
2023-03-03 8:19 ` Lee Jones
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox