Fix a bug which leave BLOCKSIZE of BloIO produced by IsaFloppy to be zero when the driver detect no media is changed in the driver.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3896 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qwang12 2007-09-20 00:38:28 +00:00
parent 2807acc305
commit 179a2e9731
1 changed files with 2 additions and 1 deletions

View File

@ -113,7 +113,8 @@ FddIdentify (
if (Status == EFI_NO_MEDIA) {
FdcDev->BlkIo.Media->MediaPresent = FALSE;
} else if (Status != EFI_MEDIA_CHANGED) {
} else if ((Status != EFI_MEDIA_CHANGED) &&
(Status != EFI_SUCCESS)) {
MotorOff (FdcDev);
return Status;
}