]> git.proxmox.com Git - mirror_edk2.git/blobdiff - CorebootModulePkg/CbSupportPei/CbSupportPei.c
CorebootModulePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / CorebootModulePkg / CbSupportPei / CbSupportPei.c
index 8fa0ac5c1efa79b52ce59a0c84bc3de2a11f64b5..bdb2faa0b60e8af98bbd96e1623aabbab0c74af2 100755 (executable)
@@ -3,13 +3,7 @@
   This file contains the main entrypoint of the PEIM.\r
 \r
 Copyright (c) 2014 - 2016, 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
-http://opensource.org/licenses/bsd-license.php\r
-\r
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+SPDX-License-Identifier: BSD-2-Clause-Patent\r
 \r
 **/\r
 #include "CbSupportPei.h"\r
@@ -169,6 +163,11 @@ CbMemInfoCallback (
              EFI_RESOURCE_ATTRIBUTE_WRITE_THROUGH_CACHEABLE |\r
              EFI_RESOURCE_ATTRIBUTE_WRITE_BACK_CACHEABLE;\r
 \r
+  if ((Base  < 0x100000) && ((Base + Size) > 0x100000)) {\r
+         Size -= (0x100000 - Base);\r
+         Base  = 0x100000;\r
+  }\r
+\r
   MemInfo = (CB_MEM_INFO *)Param;\r
   if (Base >= 0x100000) {\r
     if (Type == CB_MEM_RAM) {\r