diff options
author | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-06-07 02:28:08 +0000 |
---|---|---|
committer | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-06-07 02:28:08 +0000 |
commit | 63947cc4d01f92209a92cbe3987f324a85a39034 (patch) | |
tree | 9f2711b38839ec056d04f960bc8c910050e69d1b /InOsEmuPkg/EmuBlockIoDxe/EmuBlockIo.c | |
parent | 63e78d5254338fe4b622e3037d1291af9dcb6198 (diff) | |
download | edk2-platforms-63947cc4d01f92209a92cbe3987f324a85a39034.tar.xz |
InOsEmuPkg: Fixed mounting device nodes and .dmg files in the emulator.
There is some Linux specific code for mounting device nodes that needs to be tested. It may not compile!
Singed-off-by: andrewfish
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11754 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'InOsEmuPkg/EmuBlockIoDxe/EmuBlockIo.c')
-rw-r--r-- | InOsEmuPkg/EmuBlockIoDxe/EmuBlockIo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/InOsEmuPkg/EmuBlockIoDxe/EmuBlockIo.c b/InOsEmuPkg/EmuBlockIoDxe/EmuBlockIo.c index 9f3aa28b9e..8efc7b10e5 100644 --- a/InOsEmuPkg/EmuBlockIoDxe/EmuBlockIo.c +++ b/InOsEmuPkg/EmuBlockIoDxe/EmuBlockIo.c @@ -554,7 +554,7 @@ EmuBlockIoDriverBindingStart ( Private->BlockIo2.Reset = EmuBlockIo2Reset;
Private->BlockIo2.ReadBlocksEx = EmuBlockIo2ReadBlocksEx;
Private->BlockIo2.WriteBlocksEx = EmuBlockIo2WriteBlocksEx;
- Private->BlockIo2.FlushBlocksEx = (EFI_BLOCK_FLUSH_EX)EmuBlockIoFlushBlocks;
+ Private->BlockIo2.FlushBlocksEx = EmuBlockIo2Flush;
Private->ControllerNameTable = NULL;
|