aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Weight <[email protected]>2021-06-14 10:09:03 -0700
committerGreg Kroah-Hartman <[email protected]>2021-06-15 09:28:15 +0200
commitd9ec9daa20eb8de1efe6abae78c9835ec8ed86f9 (patch)
tree2f9d8b7cfc5d128fecd3e7d94239bbfe4ee88281
parent341466b64f301dabaed791c5862d2ae5a9e72849 (diff)
fpga: stratix10-soc: Add missing fpga_mgr_free() call
The stratix10-soc driver uses fpga_mgr_create() function and is therefore responsible to call fpga_mgr_free() to release the class driver resources. Add a missing call to fpga_mgr_free in the s10_remove() function. Signed-off-by: Russ Weight <[email protected]> Reviewed-by: Xu Yilun <[email protected]> Signed-off-by: Moritz Fischer <[email protected]> Fixes: e7eef1d7633a ("fpga: add intel stratix10 soc fpga manager driver") Cc: stable <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/fpga/stratix10-soc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/fpga/stratix10-soc.c b/drivers/fpga/stratix10-soc.c
index 2aeb53f8e9d0..a2cea500f7cc 100644
--- a/drivers/fpga/stratix10-soc.c
+++ b/drivers/fpga/stratix10-soc.c
@@ -454,6 +454,7 @@ static int s10_remove(struct platform_device *pdev)
struct s10_priv *priv = mgr->priv;
fpga_mgr_unregister(mgr);
+ fpga_mgr_free(mgr);
stratix10_svc_free_channel(priv->chan);
return 0;