]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/C/Include/X64/ProcessorBind.h
BaseTools: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / BaseTools / Source / C / Include / X64 / ProcessorBind.h
index c625f8cef4a1f6e6222b550ef84020a350aad9ea..fce179fe7e3aeb60cb289cca39b9bd98122e7db7 100644 (file)
@@ -3,13 +3,7 @@
 \r
   Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
 \r
-  This program and the accompanying materials are licensed and made available\r
-  under the terms and conditions of the BSD License which accompanies this\r
-  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
 \r
@@ -71,7 +65,7 @@
 \r
 \r
     //\r
-    // use Microsoft C complier dependent integer width types\r
+    // use Microsoft C compiler dependent integer width types\r
     //\r
     typedef unsigned __int64    UINT64;\r
     typedef __int64             INT64;\r
@@ -150,25 +144,20 @@ typedef INT64   INTN;
 #define MAX_BIT     0x8000000000000000ULL\r
 #define MAX_2_BITS  0xC000000000000000ULL\r
 \r
-//\r
-// Maximum legal Itanium-based address\r
-//\r
-#define MAX_ADDRESS   0xFFFFFFFFFFFFFFFFULL\r
-\r
 //\r
 // Modifier to ensure that all protocol member functions and EFI intrinsics\r
 // use the correct C calling convention. All protocol member functions and\r
-// EFI intrinsics are required to modify thier member functions with EFIAPI.\r
+// EFI intrinsics are required to modify their member functions with EFIAPI.\r
 //\r
 #if _MSC_EXTENSIONS\r
   ///\r
-  /// Define the standard calling convention reguardless of optimization level.\r
+  /// Define the standard calling convention regardless of optimization level.\r
   /// __cdecl is Microsoft* specific C extension.\r
   ///\r
   #define EFIAPI __cdecl\r
 #elif __GNUC__\r
   ///\r
-  /// Define the standard calling convention reguardless of optimization level.\r
+  /// Define the standard calling convention regardless of optimization level.\r
   /// efidecl is an extension to GCC that supports the differnece between x64\r
   /// GCC ABI and x64 Microsoft* ABI. EFI is closer to the Microsoft* ABI and\r
   /// EFIAPI makes sure the right ABI is used for public interfaces.\r