Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 18057cb3 authored by Bruce Allan's avatar Bruce Allan Committed by Jeff Kirsher
Browse files

ice: add needed PFR during driver unload



According to the specification, a PF Reset must be done as part of the
driver unload flow.

Signed-off-by: default avatarBruce Allan <bruce.w.allan@intel.com>
Tested-by: default avatarAndrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent d24ef08a
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -2638,6 +2638,11 @@ static void ice_remove(struct pci_dev *pdev)
	ice_deinit_pf(pf);
	ice_deinit_hw(&pf->hw);
	ice_clear_interrupt_scheme(pf);
	/* Issue a PFR as part of the prescribed driver unload flow.  Do not
	 * do it via ice_schedule_reset() since there is no need to rebuild
	 * and the service task is already stopped.
	 */
	ice_reset(&pf->hw, ICE_RESET_PFR);
	pci_disable_pcie_error_reporting(pdev);
}