All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] i3c: dw: convert to devm_platform_ioremap_resource
@ 2019-12-28 18:54 ` Yangtao Li
  0 siblings, 0 replies; 6+ messages in thread
From: Yangtao Li @ 2019-12-28 18:54 UTC (permalink / raw)
  To: vitor.soares, bbrezillon, pgaj; +Cc: Yangtao Li, linux-i3c, linux-kernel

Use devm_platform_ioremap_resource() to simplify code.

Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>
---
 drivers/i3c/master/dw-i3c-master.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/i3c/master/dw-i3c-master.c b/drivers/i3c/master/dw-i3c-master.c
index b0ff0e12d84c..7b941e93337f 100644
--- a/drivers/i3c/master/dw-i3c-master.c
+++ b/drivers/i3c/master/dw-i3c-master.c
@@ -1100,15 +1100,13 @@ static const struct i3c_master_controller_ops dw_mipi_i3c_ops = {
 static int dw_i3c_probe(struct platform_device *pdev)
 {
 	struct dw_i3c_master *master;
-	struct resource *res;
 	int ret, irq;
 
 	master = devm_kzalloc(&pdev->dev, sizeof(*master), GFP_KERNEL);
 	if (!master)
 		return -ENOMEM;
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	master->regs = devm_ioremap_resource(&pdev->dev, res);
+	master->regs = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(master->regs))
 		return PTR_ERR(master->regs);
 
-- 
2.17.1


_______________________________________________
linux-i3c mailing list
linux-i3c@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-i3c

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-01-02 12:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-12-28 18:54 [PATCH 1/2] i3c: dw: convert to devm_platform_ioremap_resource Yangtao Li
2019-12-28 18:54 ` Yangtao Li
2019-12-28 18:54 ` [PATCH 2/2] i3c: master: cdns: " Yangtao Li
2019-12-28 18:54   ` Yangtao Li
2019-12-30 13:40 ` [PATCH 1/2] i3c: dw: " Vitor Soares
2019-12-30 13:40   ` Vitor Soares

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.