Commit 1023d2ec authored by Neil Armstrong's avatar Neil Armstrong Committed by David S. Miller

net: dsa: add missing kfree on remove

To prevent memory leakage on unbinding, add missing kfree calls.
Includes minor cosmetic change to make patch clean.
Signed-off-by: default avatarNeil Armstrong <narmstrong@baylibre.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6e28b000
...@@ -914,8 +914,10 @@ static void dsa_remove_dst(struct dsa_switch_tree *dst) ...@@ -914,8 +914,10 @@ static void dsa_remove_dst(struct dsa_switch_tree *dst)
for (i = 0; i < dst->pd->nr_chips; i++) { for (i = 0; i < dst->pd->nr_chips; i++) {
struct dsa_switch *ds = dst->ds[i]; struct dsa_switch *ds = dst->ds[i];
if (ds != NULL) if (ds) {
dsa_switch_destroy(ds); dsa_switch_destroy(ds);
kfree(ds);
}
} }
} }
...@@ -924,6 +926,7 @@ static int dsa_remove(struct platform_device *pdev) ...@@ -924,6 +926,7 @@ static int dsa_remove(struct platform_device *pdev)
struct dsa_switch_tree *dst = platform_get_drvdata(pdev); struct dsa_switch_tree *dst = platform_get_drvdata(pdev);
dsa_remove_dst(dst); dsa_remove_dst(dst);
kfree(dst);
dsa_of_remove(&pdev->dev); dsa_of_remove(&pdev->dev);
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment