- Reduce pause between SelectDrive and ATAPI_RESET from 10000 to 500 (as it is in the old ATAPI driver).

svn path=/trunk/; revision=45868
This commit is contained in:
Aleksey Bragin 2010-03-05 13:16:52 +00:00
parent 309fb1c02a
commit ebfc115694

View file

@ -687,7 +687,7 @@ AtapiSoftReset(
GetBaseStatus(chan, statusByte2);
KdPrint2((PRINT_PREFIX " statusByte2 %x:\n", statusByte2));
SelectDrive(chan, DeviceNumber);
AtapiStallExecution(10000);
AtapiStallExecution(500);
AtapiWritePort1(chan, IDX_IO1_o_Command, IDE_COMMAND_ATAPI_RESET);
// ReactOS modification: Already stop looping when we know that the drive has finished resetting.