]> git.proxmox.com Git - mirror_edk2.git/blobdiff - OptionRomPkg/CirrusLogic5430Dxe/Edid.c
Fix wrong usage sizeof(SIZE).
[mirror_edk2.git] / OptionRomPkg / CirrusLogic5430Dxe / Edid.c
index 20b93a8e899f0e5fce31d3f6155f139f9caf3f4b..6ce681a6ca9d0b767039ef00b02152eaafa2a35c 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   Read EDID information and parse EDID information.\r
 \r
-  Copyright (c) 2008, Intel Corporation. All rights reserved.<BR>\r
+  Copyright (c) 2008 - 2014, Intel Corporation. All rights reserved.<BR>\r
   This program and the accompanying materials\r
   are licensed and made available under the terms and conditions of the BSD License\r
   which accompanies this distribution.  The full text of the license may be found at\r
@@ -141,7 +141,7 @@ ReadEdidData (
   }\r
 \r
   *EdidDataBlock = AllocateCopyPool (\r
-                     sizeof (EDID_BLOCK_SIZE),\r
+                     EDID_BLOCK_SIZE,\r
                      ValidEdid\r
                      );\r
   if (*EdidDataBlock == NULL) {\r
@@ -370,7 +370,7 @@ CirrusLogic5430VideoModeSetup (
     //\r
     // Allocate double size of VESA_BIOS_EXTENSIONS_EDID_BLOCK_SIZE to avoid overflow\r
     //\r
-    EdidOverrideDataBlock = AllocatePool (sizeof (EDID_BLOCK_SIZE * 2));\r
+    EdidOverrideDataBlock = AllocatePool (EDID_BLOCK_SIZE * 2);\r
     if (NULL == EdidOverrideDataBlock) {\r
                Status = EFI_OUT_OF_RESOURCES;\r
       goto Done;\r