aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/fpga/socfpga.c
diff options
context:
space:
mode:
authorAlan Tull <atull@kernel.org>2018-05-16 19:49:55 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-05-25 12:23:55 -0400
commit7085e2a94f7df5f419e3cfb2fe809ce6564e9629 (patch)
treeb0609f2d091aae39e00609357d5e6de678887bef /drivers/fpga/socfpga.c
parentbbaa9cd3a605e337cefc566e5ac1b110763c8d1c (diff)
fpga: manager: change api, don't use drvdata
Change fpga_mgr_register to not set or use drvdata. This supports the case where a PCIe device has more than one manager. Add fpga_mgr_create/free functions. Change fpga_mgr_register and fpga_mgr_unregister functions to take the mgr struct as their only parameter. struct fpga_manager *fpga_mgr_create(struct device *dev, const char *name, const struct fpga_manager_ops *mops, void *priv); void fpga_mgr_free(struct fpga_manager *mgr); int fpga_mgr_register(struct fpga_manager *mgr); void fpga_mgr_unregister(struct fpga_manager *mgr); Update the drivers that call fpga_mgr_register with the new API. Signed-off-by: Alan Tull <atull@kernel.org> [Moritz: Fixup whitespace issue] Reported-by: Jiuyue Ma <majiuyue@huawei.com> Signed-off-by: Moritz Fischer <mdf@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/fpga/socfpga.c')
-rw-r--r--drivers/fpga/socfpga.c19
1 files changed, 16 insertions, 3 deletions
diff --git a/drivers/fpga/socfpga.c b/drivers/fpga/socfpga.c
index b6672e66cda6..51efaf9e0e03 100644
--- a/drivers/fpga/socfpga.c
+++ b/drivers/fpga/socfpga.c
@@ -555,6 +555,7 @@ static int socfpga_fpga_probe(struct platform_device *pdev)
555{ 555{
556 struct device *dev = &pdev->dev; 556 struct device *dev = &pdev->dev;
557 struct socfpga_fpga_priv *priv; 557 struct socfpga_fpga_priv *priv;
558 struct fpga_manager *mgr;
558 struct resource *res; 559 struct resource *res;
559 int ret; 560 int ret;
560 561
@@ -581,13 +582,25 @@ static int socfpga_fpga_probe(struct platform_device *pdev)
581 if (ret) 582 if (ret)
582 return ret; 583 return ret;
583 584
584 return fpga_mgr_register(dev, "Altera SOCFPGA FPGA Manager", 585 mgr = fpga_mgr_create(dev, "Altera SOCFPGA FPGA Manager",
585 &socfpga_fpga_ops, priv); 586 &socfpga_fpga_ops, priv);
587 if (!mgr)
588 return -ENOMEM;
589
590 platform_set_drvdata(pdev, mgr);
591
592 ret = fpga_mgr_register(mgr);
593 if (ret)
594 fpga_mgr_free(mgr);
595
596 return ret;
586} 597}
587 598
588static int socfpga_fpga_remove(struct platform_device *pdev) 599static int socfpga_fpga_remove(struct platform_device *pdev)
589{ 600{
590 fpga_mgr_unregister(&pdev->dev); 601 struct fpga_manager *mgr = platform_get_drvdata(pdev);
602
603 fpga_mgr_unregister(mgr);
591 604
592 return 0; 605 return 0;
593} 606}