[FREELDR] Remove unnecessary checks. CORE-14280

This commit is contained in:
Thomas Faber
2018-01-30 20:48:25 +01:00
parent 79ea0ae09e
commit 4d811a2f97
2 changed files with 1 additions and 3 deletions

View File

@@ -112,8 +112,6 @@ HalpCalibrateStallExecution(VOID)
/* Stage 1: Coarse calibration */
WaitFor8254Wraparound();
delay_count = 1;
do

View File

@@ -343,7 +343,7 @@ DetectSerialMouse(PUCHAR Port)
TimeOut = 200;
for (i = 0; i < 4; i++)
{
while (((READ_PORT_UCHAR(Port + 5) & 1) == 0) && (TimeOut > 0))
while ((READ_PORT_UCHAR(Port + 5) & 1) == 0)
{
StallExecutionProcessor(1000);
--TimeOut;