sfc: Change order of device removal to reverse of probe order

This makes efx_pci_remove_main() more obviously the inverse of
efx_pci_probe_main(), and matches our out-of-tree driver.

Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Ben Hutchings 2009-10-23 08:31:37 +00:00 committed by David S. Miller
parent 7d4cdb5af0
commit f01865f064
1 changed files with 1 additions and 1 deletions

View File

@ -2025,12 +2025,12 @@ static void efx_pci_remove_main(struct efx_nic *efx)
if (!efx->membase) if (!efx->membase)
return; return;
falcon_fini_interrupt(efx);
efx_fini_channels(efx); efx_fini_channels(efx);
efx_fini_port(efx); efx_fini_port(efx);
/* Shutdown the board, then the NIC and board state */ /* Shutdown the board, then the NIC and board state */
efx->board_info.fini(efx); efx->board_info.fini(efx);
falcon_fini_interrupt(efx);
efx_fini_napi(efx); efx_fini_napi(efx);
efx_remove_all(efx); efx_remove_all(efx);