summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Universal/Disk
diff options
context:
space:
mode:
authorqianouyang <qianouyang@6f19259b-4bc3-4df7-8a09-765794883524>2011-12-01 05:10:41 +0000
committerqianouyang <qianouyang@6f19259b-4bc3-4df7-8a09-765794883524>2011-12-01 05:10:41 +0000
commit21e1018b1c741911deecd1f2b25319ea414e5f3b (patch)
tree23f2c1212c60a8bd57cc785444ae3b53772b0a3b /MdeModulePkg/Universal/Disk
parent86da563d36390940d8bd565604b4377c3cebafb2 (diff)
downloadedk2-21e1018b1c741911deecd1f2b25319ea414e5f3b.zip
edk2-21e1018b1c741911deecd1f2b25319ea414e5f3b.tar.gz
edk2-21e1018b1c741911deecd1f2b25319ea414e5f3b.tar.bz2
1. Remove the unnecessary check of the existing of BlockIo2 in PartitionDriverBindingSupported().
2. Remove the comments of the BlockIo2 check in PartitionDriverBindingStart(). Signed-off-by: qianouyang Reviewed-by: niruiyu git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12806 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/Disk')
-rw-r--r--MdeModulePkg/Universal/Disk/PartitionDxe/Partition.c33
1 files changed, 4 insertions, 29 deletions
diff --git a/MdeModulePkg/Universal/Disk/PartitionDxe/Partition.c b/MdeModulePkg/Universal/Disk/PartitionDxe/Partition.c
index a51c7dd..318bfe4 100644
--- a/MdeModulePkg/Universal/Disk/PartitionDxe/Partition.c
+++ b/MdeModulePkg/Universal/Disk/PartitionDxe/Partition.c
@@ -165,27 +165,10 @@ PartitionDriverBindingSupported (
ControllerHandle,
EFI_OPEN_PROTOCOL_TEST_PROTOCOL
);
- if (EFI_ERROR (Status)) {
- return Status;
- }
-
- Status = gBS->OpenProtocol (
- ControllerHandle,
- &gEfiBlockIo2ProtocolGuid,
- NULL,
- This->DriverBindingHandle,
- ControllerHandle,
- EFI_OPEN_PROTOCOL_TEST_PROTOCOL
- );
if (EFI_ERROR (Status)) {
- //
- // According to UEFI Spec 2.3.1, if a driver is written for a disk device,
- // then the EFI_BLOCK_IO_PROTOCOL and EFI_BLOCK_IO2_PROTOCOAL must be implemented.
- // Currently, SCSI disk driver only produce the EFI_BLOCK_IO_PROTOCOL, it will
- // not be updated until the non blocking SCSI Pass Thru Protocol is provided.
- // If there is no EFI_BLOCK_IO2_PROTOCOL, skip here.
- //
- }
+ return Status;
+ }
+
return EFI_SUCCESS;
}
@@ -222,6 +205,7 @@ PartitionDriverBindingStart (
BOOLEAN MediaPresent;
EFI_TPL OldTpl;
+ BlockIo2 = NULL;
OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
//
// Check RemainingDevicePath validation
@@ -261,15 +245,6 @@ PartitionDriverBindingStart (
ControllerHandle,
EFI_OPEN_PROTOCOL_BY_DRIVER
);
- if (EFI_ERROR (Status)) {
- //
- // According to UEFI Spec 2.3.1, if a driver is written for a disk device,
- // then the EFI_BLOCK_IO_PROTOCOL and EFI_BLOCK_IO2_PROTOCOAL must be implemented.
- // Currently, SCSI disk driver only produce the EFI_BLOCK_IO_PROTOCOL, it will
- // not be updated until the non blocking SCSI Pass Thru Protocol is provided.
- // If there is no EFI_BLOCK_IO2_PROTOCOL, skip here.
- //
- }
//
// Get the Device Path Protocol on ControllerHandle's handle.