linux-fpga.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] fpga: of-fpga-region: Use platform_set_drvdata
@ 2018-08-24 15:25 Moritz Fischer
  2018-08-24 15:25 ` [PATCH 2/2] fpga: dfl-fme-region: Use platform_get_drvdata() Moritz Fischer
  2018-08-26 21:20 ` [PATCH 1/2] fpga: of-fpga-region: Use platform_set_drvdata Alan Tull
  0 siblings, 2 replies; 5+ messages in thread
From: Moritz Fischer @ 2018-08-24 15:25 UTC (permalink / raw)
  To: hao.wu, atull; +Cc: linux-fpga, linux-kernel, Moritz Fischer

Use platform_set_drvdata rather than dev_set_drvdata
to match the platform_get_drvdata in the _remove()
function of the platform driver.

Signed-off-by: Moritz Fischer <mdf@kernel.org>
---
 drivers/fpga/of-fpga-region.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/fpga/of-fpga-region.c b/drivers/fpga/of-fpga-region.c
index 35fabb8083fb..8c6120e30930 100644
--- a/drivers/fpga/of-fpga-region.c
+++ b/drivers/fpga/of-fpga-region.c
@@ -421,7 +421,7 @@ static int of_fpga_region_probe(struct platform_device *pdev)
 		goto eprobe_free;
 
 	of_platform_populate(np, fpga_region_of_match, NULL, &region->dev);
-	dev_set_drvdata(dev, region);
+	platform_set_drvdata(pdev, region);
 
 	dev_info(dev, "FPGA Region probed\n");
 
-- 
2.18.0

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

end of thread, other threads:[~2018-08-26 21:21 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-24 15:25 [PATCH 1/2] fpga: of-fpga-region: Use platform_set_drvdata Moritz Fischer
2018-08-24 15:25 ` [PATCH 2/2] fpga: dfl-fme-region: Use platform_get_drvdata() Moritz Fischer
2018-08-24 18:16   ` Wu Hao
2018-08-26 21:21   ` Alan Tull
2018-08-26 21:20 ` [PATCH 1/2] fpga: of-fpga-region: Use platform_set_drvdata Alan Tull

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).