diff options
Diffstat (limited to 'drivers/fpga/socfpga.c')
-rw-r--r-- | drivers/fpga/socfpga.c | 19 |
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 | ||
588 | static int socfpga_fpga_remove(struct platform_device *pdev) | 599 | static 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 | } |