Commit 5b86ac9e authored by Sam Bobroff's avatar Sam Bobroff Committed by Michael Ellerman
Browse files

powerpc/eeh: Remove misleading test in eeh_handle_normal_event()



Remove a test that checks if "frozen_bus" is NULL, because it cannot
have changed since it was tested at the start of the function and so
must be true here.

Signed-off-by: default avatarSam Bobroff <sam.bobroff@au1.ibm.com>
Reviewed-by: default avatarAlexey Kardashevskiy <aik@ozlabs.ru>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 63457b14
Loading
Loading
Loading
Loading
+11 −13
Original line number Diff line number Diff line
@@ -930,7 +930,6 @@ hard_fail:
	 * all removed devices correctly to avoid access
	 * the their PCI config any more.
	 */
	if (frozen_bus) {
	if (pe->type & EEH_PE_VF) {
		eeh_pe_dev_traverse(pe, eeh_rmv_device, NULL);
		eeh_pe_dev_mode_mark(pe, EEH_DEV_REMOVED);
@@ -944,7 +943,6 @@ hard_fail:
		/* The passed PE should no longer be used */
		return;
	}
	}
final:
	eeh_pe_state_clear(pe, EEH_PE_RECOVERING);
}