mirror of https://github.com/acidanthera/audk.git
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:
parent
2807acc305
commit
179a2e9731
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue