diff mbox

[edk2,01/35] CorebootPayloadPkg: FbGop: remove set but unused variables

Message ID 1458815844-24793-2-git-send-email-lersek@redhat.com
State Accepted
Commit ca469b47283b802be6228c6bfa78d201ceecdd27
Headers show

Commit Message

Laszlo Ersek March 24, 2016, 10:36 a.m. UTC
Cc: Maurice Ma <maurice.ma@intel.com>
Cc: Prince Agyeman <prince.agyeman@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Laszlo Ersek <lersek@redhat.com>

---
 CorebootPayloadPkg/FbGop/FbGop.c | 17 ++++++-----------
 1 file changed, 6 insertions(+), 11 deletions(-)

-- 
1.8.3.1


_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel
diff mbox

Patch

diff --git a/CorebootPayloadPkg/FbGop/FbGop.c b/CorebootPayloadPkg/FbGop/FbGop.c
index 196efe8c29d9..37d6def7f780 100644
--- a/CorebootPayloadPkg/FbGop/FbGop.c
+++ b/CorebootPayloadPkg/FbGop/FbGop.c
@@ -434,7 +434,6 @@  FbGopChildHandleInstall (
   FB_VIDEO_DEV            *FbGopPrivate;
   PCI_TYPE00               Pci;
   ACPI_ADR_DEVICE_PATH     AcpiDeviceNode;
-  BOOLEAN                  ProtocolInstalled;
 
   //
   // Allocate the private device structure for video device
@@ -559,8 +558,6 @@  FbGopChildHandleInstall (
     //goto Done;    
   }
 
-  ProtocolInstalled = FALSE;
-  
   //
   // Creat child handle and install Graphics Output Protocol,EDID Discovered/Active Protocol
   //
@@ -590,7 +587,6 @@  FbGopChildHandleInstall (
     if (EFI_ERROR (Status)) {
       goto Done;
     }
-    ProtocolInstalled = TRUE;
   }
   
 Done:
@@ -765,16 +761,15 @@  HasChildHandle (
   EFI_OPEN_PROTOCOL_INFORMATION_ENTRY  *OpenInfoBuffer;
   UINTN                                EntryCount;
   BOOLEAN                              HasChild;
-  EFI_STATUS                           Status;
 
   EntryCount = 0;
   HasChild   = FALSE;
-  Status = gBS->OpenProtocolInformation (
-                  Controller,
-                  &gEfiPciIoProtocolGuid,
-                  &OpenInfoBuffer,
-                  &EntryCount
-                  );
+  gBS->OpenProtocolInformation (
+         Controller,
+         &gEfiPciIoProtocolGuid,
+         &OpenInfoBuffer,
+         &EntryCount
+         );
   for (Index = 0; Index < EntryCount; Index++) {
     if ((OpenInfoBuffer[Index].Attributes & EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) != 0) {
       HasChild = TRUE;