mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[FREELDR] Remove unnecessary checks. CORE-14280
This commit is contained in:
parent
79ea0ae09e
commit
4d811a2f97
2 changed files with 1 additions and 3 deletions
|
@ -112,8 +112,6 @@ HalpCalibrateStallExecution(VOID)
|
|||
|
||||
/* Stage 1: Coarse calibration */
|
||||
|
||||
WaitFor8254Wraparound();
|
||||
|
||||
delay_count = 1;
|
||||
|
||||
do
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue