提交 4adf4351 编写于 作者: S Sunil Goutham 提交者: David S. Miller

net: thunderx: Add PCI driver shutdown routine

Signed-off-by: NSunil Goutham <sgoutham@cavium.com>
Signed-off-by: NAleksey Makarov <aleksey.makarov@caviumnetworks.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 b49087dd
...@@ -1335,11 +1335,17 @@ static void nicvf_remove(struct pci_dev *pdev) ...@@ -1335,11 +1335,17 @@ static void nicvf_remove(struct pci_dev *pdev)
pci_disable_device(pdev); pci_disable_device(pdev);
} }
static void nicvf_shutdown(struct pci_dev *pdev)
{
nicvf_remove(pdev);
}
static struct pci_driver nicvf_driver = { static struct pci_driver nicvf_driver = {
.name = DRV_NAME, .name = DRV_NAME,
.id_table = nicvf_id_table, .id_table = nicvf_id_table,
.probe = nicvf_probe, .probe = nicvf_probe,
.remove = nicvf_remove, .remove = nicvf_remove,
.shutdown = nicvf_shutdown,
}; };
static int __init nicvf_init_module(void) static int __init nicvf_init_module(void)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册