Commit 674a1357 authored by Barry Song's avatar Barry Song Committed by David S. Miller

net: hns3: remove unnecessary devm_kfree

since we are using device-managed function, it is unnecessary
to free in probe.
Signed-off-by: default avatarBarry Song <song.bao.hua@hisilicon.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9f66a455
...@@ -2097,10 +2097,8 @@ static int hns3_probe(struct pci_dev *pdev, const struct pci_device_id *ent) ...@@ -2097,10 +2097,8 @@ static int hns3_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
pci_set_drvdata(pdev, ae_dev); pci_set_drvdata(pdev, ae_dev);
ret = hnae3_register_ae_dev(ae_dev); ret = hnae3_register_ae_dev(ae_dev);
if (ret) { if (ret)
devm_kfree(&pdev->dev, ae_dev);
pci_set_drvdata(pdev, NULL); pci_set_drvdata(pdev, NULL);
}
return ret; return ret;
} }
...@@ -2157,7 +2155,6 @@ static void hns3_shutdown(struct pci_dev *pdev) ...@@ -2157,7 +2155,6 @@ static void hns3_shutdown(struct pci_dev *pdev)
struct hnae3_ae_dev *ae_dev = pci_get_drvdata(pdev); struct hnae3_ae_dev *ae_dev = pci_get_drvdata(pdev);
hnae3_unregister_ae_dev(ae_dev); hnae3_unregister_ae_dev(ae_dev);
devm_kfree(&pdev->dev, ae_dev);
pci_set_drvdata(pdev, NULL); pci_set_drvdata(pdev, NULL);
if (system_state == SYSTEM_POWER_OFF) if (system_state == SYSTEM_POWER_OFF)
......
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