efx.c (7e773594dada10f60c16c7085e0f0760122af8a7) efx.c (98ff4c7c8ac7f5339aac6114105395fea19f992e)
1// SPDX-License-Identifier: GPL-2.0-only
2/****************************************************************************
3 * Driver for Solarflare network controllers and boards
4 * Copyright 2005-2006 Fen Systems Ltd.
5 * Copyright 2005-2013 Solarflare Communications Inc.
6 */
7
8#include <linux/filter.h>

--- 872 unchanged lines hidden (view full) ---

881
882 efx_unregister_netdev(efx);
883
884 efx_mtd_remove(efx);
885
886 efx_pci_remove_main(efx);
887
888 efx_fini_io(efx);
1// SPDX-License-Identifier: GPL-2.0-only
2/****************************************************************************
3 * Driver for Solarflare network controllers and boards
4 * Copyright 2005-2006 Fen Systems Ltd.
5 * Copyright 2005-2013 Solarflare Communications Inc.
6 */
7
8#include <linux/filter.h>

--- 872 unchanged lines hidden (view full) ---

881
882 efx_unregister_netdev(efx);
883
884 efx_mtd_remove(efx);
885
886 efx_pci_remove_main(efx);
887
888 efx_fini_io(efx);
889 netif_dbg(efx, drv, efx->net_dev, "shutdown successful\n");
889 pci_dbg(efx->pci_dev, "shutdown successful\n");
890
891 efx_fini_struct(efx);
892 free_netdev(efx->net_dev);
893 probe_data = container_of(efx, struct efx_probe_data, efx);
894 kfree(probe_data);
895
896 pci_disable_pcie_error_reporting(pci_dev);
897};

--- 449 unchanged lines hidden ---
890
891 efx_fini_struct(efx);
892 free_netdev(efx->net_dev);
893 probe_data = container_of(efx, struct efx_probe_data, efx);
894 kfree(probe_data);
895
896 pci_disable_pcie_error_reporting(pci_dev);
897};

--- 449 unchanged lines hidden ---