mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
fpga: fpga-mgr: altera-pr-ip: Simplify registration
Simplify registration using new devm_fpga_mgr_register() API. Reviewed-by: Tom Rix <trix@redhat.com> Signed-off-by: Moritz Fischer <mdf@kernel.org> Link: https://lore.kernel.org/r/20201115195127.284487-11-mdf@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2630fa8d00
commit
907d4ad599
@ -28,15 +28,6 @@ static int alt_pr_platform_probe(struct platform_device *pdev)
|
|||||||
return alt_pr_register(dev, reg_base);
|
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[] = {
|
static const struct of_device_id alt_pr_of_match[] = {
|
||||||
{ .compatible = "altr,a10-pr-ip", },
|
{ .compatible = "altr,a10-pr-ip", },
|
||||||
{},
|
{},
|
||||||
@ -46,7 +37,6 @@ MODULE_DEVICE_TABLE(of, alt_pr_of_match);
|
|||||||
|
|
||||||
static struct platform_driver alt_pr_platform_driver = {
|
static struct platform_driver alt_pr_platform_driver = {
|
||||||
.probe = alt_pr_platform_probe,
|
.probe = alt_pr_platform_probe,
|
||||||
.remove = alt_pr_platform_remove,
|
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "alt_a10_pr_ip",
|
.name = "alt_a10_pr_ip",
|
||||||
.of_match_table = alt_pr_of_match,
|
.of_match_table = alt_pr_of_match,
|
||||||
|
@ -195,9 +195,7 @@ int alt_pr_register(struct device *dev, void __iomem *reg_base)
|
|||||||
if (!mgr)
|
if (!mgr)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
dev_set_drvdata(dev, mgr);
|
return devm_fpga_mgr_register(dev, mgr);
|
||||||
|
|
||||||
return fpga_mgr_register(mgr);
|
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(alt_pr_register);
|
EXPORT_SYMBOL_GPL(alt_pr_register);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user