Skip to content

Commit

Permalink
fpga: fpga-mgr: altera-pr-ip: Simplify registration
Browse files Browse the repository at this point in the history
Simplify registration using new devm_fpga_mgr_register() API.

Reviewed-by: Tom Rix <[email protected]>
Signed-off-by: Moritz Fischer <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
mfischer authored and gregkh committed Dec 1, 2020
1 parent 2630fa8 commit 907d4ad
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
10 changes: 0 additions & 10 deletions drivers/fpga/altera-pr-ip-core-plat.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,6 @@ static int alt_pr_platform_probe(struct platform_device *pdev)
return alt_pr_register(dev, reg_base);
}

static int alt_pr_platform_remove(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;

alt_pr_unregister(dev);

return 0;
}

static const struct of_device_id alt_pr_of_match[] = {
{ .compatible = "altr,a10-pr-ip", },
{},
Expand All @@ -46,7 +37,6 @@ MODULE_DEVICE_TABLE(of, alt_pr_of_match);

static struct platform_driver alt_pr_platform_driver = {
.probe = alt_pr_platform_probe,
.remove = alt_pr_platform_remove,
.driver = {
.name = "alt_a10_pr_ip",
.of_match_table = alt_pr_of_match,
Expand Down
4 changes: 1 addition & 3 deletions drivers/fpga/altera-pr-ip-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,7 @@ int alt_pr_register(struct device *dev, void __iomem *reg_base)
if (!mgr)
return -ENOMEM;

dev_set_drvdata(dev, mgr);

return fpga_mgr_register(mgr);
return devm_fpga_mgr_register(dev, mgr);
}
EXPORT_SYMBOL_GPL(alt_pr_register);

Expand Down

0 comments on commit 907d4ad

Please sign in to comment.