Skip to content

Commit

Permalink
eRepair: Pass RX/TX vectors into lane power down HWPs in right order
Browse files Browse the repository at this point in the history
Inverts the order that call_dmi_erepair passes TX and RX lane vectors into
the p9_io_dmi_restore_erepair and p9_io_cen_restore_erepair HWPs in order
to conform to the API defintiion.

Change-Id: Iede0a9938427432bebdb7770854160524c7b0268
CQ: SW439818
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/63413
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
  • Loading branch information
Nick Bofferding authored and dcrowell77 committed Jul 30, 2018
1 parent da9d0e7 commit 6b3ddf5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/usr/isteps/istep12/call_dmi_erepair.C
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ void* call_dmi_erepair (void *io_pArgs)
FAPI_INVOKE_HWP(l_errPtr,
p9_io_dmi_restore_erepair,
l_fapi_endp1_target,
l_endp1_txFaillanes,
l_endp1_rxFaillanes);
l_endp1_rxFaillanes,
l_endp1_txFaillanes);
if(l_errPtr)
{
TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace,
Expand Down Expand Up @@ -209,8 +209,8 @@ void* call_dmi_erepair (void *io_pArgs)
FAPI_INVOKE_HWP(l_errPtr,
p9_io_cen_restore_erepair,
l_fapi_endp2_target,
l_endp2_txFaillanes,
l_endp2_rxFaillanes);
l_endp2_rxFaillanes,
l_endp2_txFaillanes);
if (l_errPtr)
{
TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace,
Expand Down

0 comments on commit 6b3ddf5

Please sign in to comment.