提交 557bc7d4 编写于 作者: W Wei Yongjun 提交者: David S. Miller

net: ena: Remove unnecessary pci_set_drvdata()

The driver core clears the driver data to NULL after device_release
or on probe failure. Thus, it is not needed to manually clear the
device driver data to NULL.
Signed-off-by: NWei Yongjun <weiyj.lk@gmail.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 64721094
......@@ -3060,7 +3060,6 @@ static int ena_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
err_free_region:
ena_release_bars(ena_dev, pdev);
err_free_ena_dev:
pci_set_drvdata(pdev, NULL);
vfree(ena_dev);
err_disable_device:
pci_disable_device(pdev);
......@@ -3156,8 +3155,6 @@ static void ena_remove(struct pci_dev *pdev)
ena_release_bars(ena_dev, pdev);
pci_set_drvdata(pdev, NULL);
pci_disable_device(pdev);
ena_com_destroy_interrupt_moderation(ena_dev);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册