mirror of https://gitee.com/openkylin/linux.git
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: Sam Bobroff <sam.bobroff@au1.ibm.com> Reviewed-by: Alexey Kardashevskiy <aik@ozlabs.ru> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
parent
63457b144b
commit
5b86ac9e91
|
@ -930,7 +930,6 @@ void eeh_handle_normal_event(struct eeh_pe *pe)
|
|||
* 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 @@ void eeh_handle_normal_event(struct eeh_pe *pe)
|
|||
/* The passed PE should no longer be used */
|
||||
return;
|
||||
}
|
||||
}
|
||||
final:
|
||||
eeh_pe_state_clear(pe, EEH_PE_RECOVERING);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue