summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Universal/Disk/PartitionDxe/Gpt.c
diff options
context:
space:
mode:
authorqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2009-04-22 02:52:32 +0000
committerqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2009-04-22 02:52:32 +0000
commit96f99e1df863aea8dc8ecadb29e799545c9d1924 (patch)
treeb065a741225db5abbb19d5f262520ca030c4e185 /MdeModulePkg/Universal/Disk/PartitionDxe/Gpt.c
parent15a7c2f1fe25128994584bddfb52d4c33d474ef8 (diff)
downloadedk2-platforms-96f99e1df863aea8dc8ecadb29e799545c9d1924.tar.xz
Use DiskIo->ReadDisk() API to avoid alignment issue.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8144 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/Disk/PartitionDxe/Gpt.c')
-rw-r--r--MdeModulePkg/Universal/Disk/PartitionDxe/Gpt.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/MdeModulePkg/Universal/Disk/PartitionDxe/Gpt.c b/MdeModulePkg/Universal/Disk/PartitionDxe/Gpt.c
index 8cb78abfc1..3f352cc318 100644
--- a/MdeModulePkg/Universal/Disk/PartitionDxe/Gpt.c
+++ b/MdeModulePkg/Universal/Disk/PartitionDxe/Gpt.c
@@ -217,13 +217,13 @@ PartitionInstallGptChildHandles (
//
// Read the Protective MBR from LBA #0
//
- Status = BlockIo->ReadBlocks (
- BlockIo,
- BlockIo->Media->MediaId,
- 0,
- BlockIo->Media->BlockSize,
- ProtectiveMbr
- );
+ Status = DiskIo->ReadDisk (
+ DiskIo,
+ BlockIo->Media->MediaId,
+ 0,
+ BlockIo->Media->BlockSize,
+ ProtectiveMbr
+ );
if (EFI_ERROR (Status)) {
GptValidStatus = Status;
goto Done;
@@ -304,7 +304,7 @@ PartitionInstallGptChildHandles (
);
if (EFI_ERROR (Status)) {
GptValidStatus = Status;
- DEBUG ((EFI_D_ERROR, " Partition Entry ReadBlocks error\n"));
+ DEBUG ((EFI_D_ERROR, " Partition Entry ReadDisk error\n"));
goto Done;
}
@@ -433,13 +433,13 @@ PartitionValidGptTable (
//
// Read the EFI Partition Table Header
//
- Status = BlockIo->ReadBlocks (
- BlockIo,
- BlockIo->Media->MediaId,
- Lba,
- BlockSize,
- PartHdr
- );
+ Status = DiskIo->ReadDisk (
+ DiskIo,
+ BlockIo->Media->MediaId,
+ Lba,
+ BlockSize,
+ PartHdr
+ );
if (EFI_ERROR (Status)) {
FreePool (PartHdr);
return FALSE;