mirror of https://github.com/acidanthera/audk.git
Roll back r13823.
signed-off-by: Jeff Fan <jeff.fan@intel.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13825 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
ab04e71d33
commit
48da9f0d40
|
@ -598,15 +598,19 @@ SendCommandAndWaitForAckOK (
|
|||
SendPacketWithoutData (Command);
|
||||
while (TRUE) {
|
||||
Status = ReceiveAckPacket (&Ack, Timeout, BreakReceived, CheckSumStatus);
|
||||
if (Status == RETURN_SUCCESS && Ack == DEBUG_COMMAND_OK) {
|
||||
if (Status == RETURN_SUCCESS && Ack == DEBUG_COMMAND_RESEND) {
|
||||
//
|
||||
// Resend the last command
|
||||
//
|
||||
break;
|
||||
}
|
||||
if ((Status == RETURN_SUCCESS && Ack == DEBUG_COMMAND_OK) ||
|
||||
Status == RETURN_TIMEOUT) {
|
||||
//
|
||||
// Received Ack OK or timeout
|
||||
//
|
||||
return Status;
|
||||
}
|
||||
if (Status == RETURN_TIMEOUT) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue