]> git.proxmox.com Git - mirror_edk2.git/commitdiff
ECC Cleanup.
authorvanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 24 Oct 2008 06:06:42 +0000 (06:06 +0000)
committervanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 24 Oct 2008 06:06:42 +0000 (06:06 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6213 6f19259b-4bc3-4df7-8a09-765794883524

20 files changed:
MdePkg/Library/BaseLib/Ia32/CpuId.c
MdePkg/Library/BaseLib/Ia32/CpuIdEx.c
MdePkg/Library/BaseLib/Ia32/Monitor.c
MdePkg/Library/BaseLib/Ia32/Mwait.c
MdePkg/Library/BaseLib/Ia32/ReadPmc.c
MdePkg/Library/BaseLib/Ia32/WriteCr0.c
MdePkg/Library/BaseLib/Ia32/WriteCr2.c
MdePkg/Library/BaseLib/Ia32/WriteCr3.c
MdePkg/Library/BaseLib/Ia32/WriteCr4.c
MdePkg/Library/BaseLib/Ia32/WriteDr0.c
MdePkg/Library/BaseLib/Ia32/WriteDr1.c
MdePkg/Library/BaseLib/Ia32/WriteDr2.c
MdePkg/Library/BaseLib/Ia32/WriteDr3.c
MdePkg/Library/BaseLib/Ia32/WriteDr4.c
MdePkg/Library/BaseLib/Ia32/WriteDr5.c
MdePkg/Library/BaseLib/Ia32/WriteDr6.c
MdePkg/Library/BaseLib/Ia32/WriteDr7.c
MdePkg/Library/BaseLib/X64/InterlockedIncrement.c
MdePkg/Library/BaseLib/X64/ReadMsr64.c
MdePkg/Library/BaseLib/X64/WriteMsr64.c

index 7809f41d5db16e97e9deadb7e99c0fbb21bd007d..9745ae21d4846519d0da577dc8826f3dac78d629 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   AsmCpuid function.\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
   All rights reserved. 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
@@ -12,9 +12,6 @@
 \r
 **/\r
 \r
-\r
-\r
-\r
 /**\r
   Retrieves CPUID information.\r
 \r
   If Edx is not NULL, then the value of EDX after CPUID is returned in Edx.\r
   This function is only available on IA-32 and X64.\r
 \r
-  @param  Index The 32-bit value to load into EAX prior to invoking the CPUID\r
-                instruction.\r
-  @param  Eax   Pointer to the 32-bit EAX value returned by the CPUID\r
-                instruction. This is an optional parameter that may be NULL.\r
-  @param  Ebx   Pointer to the 32-bit EBX value returned by the CPUID\r
-                instruction. This is an optional parameter that may be NULL.\r
-  @param  Ecx   Pointer to the 32-bit ECX value returned by the CPUID\r
-                instruction. This is an optional parameter that may be NULL.\r
-  @param  Edx   Pointer to the 32-bit EDX value returned by the CPUID\r
-                instruction. This is an optional parameter that may be NULL.\r
+  @param  Index         The 32-bit value to load into EAX prior to invoking the CPUID\r
+                        instruction.\r
+  @param  RegisterEax   Pointer to the 32-bit EAX value returned by the CPUID\r
+                        instruction. This is an optional parameter that may be NULL.\r
+  @param  RegisterEbx   Pointer to the 32-bit EBX value returned by the CPUID\r
+                        instruction. This is an optional parameter that may be NULL.\r
+  @param  RegisterEcx   Pointer to the 32-bit ECX value returned by the CPUID\r
+                        instruction. This is an optional parameter that may be NULL.\r
+  @param  RegisterEdx   Pointer to the 32-bit EDX value returned by the CPUID\r
+                        instruction. This is an optional parameter that may be NULL.\r
 \r
   @return Index\r
 \r
index 851311256c86c123729d86e278530d02dca5dd52..1133397670e9c22fa48a6d6c6e9c481723f56054 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   AsmCpuidEx function.\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
   All rights reserved. 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
@@ -12,9 +12,6 @@
 \r
 **/\r
 \r
-\r
-\r
-\r
 /**\r
   Retrieves CPUID information using an extended leaf identifier.\r
 \r
   If Ecx is not NULL, then the value of ECX after CPUID is returned in Ecx.\r
   If Edx is not NULL, then the value of EDX after CPUID is returned in Edx.\r
 \r
-  @param  Index     The 32-bit value to load into EAX prior to invoking the\r
-                    CPUID instruction.\r
-  @param  SubIndex  The 32-bit value to load into ECX prior to invoking the\r
-                    CPUID instruction.\r
-  @param  Eax       Pointer to the 32-bit EAX value returned by the CPUID\r
-                    instruction. This is an optional parameter that may be\r
-                    NULL.\r
-  @param  Ebx       Pointer to the 32-bit EBX value returned by the CPUID\r
-                    instruction. This is an optional parameter that may be\r
-                    NULL.\r
-  @param  Ecx       Pointer to the 32-bit ECX value returned by the CPUID\r
-                    instruction. This is an optional parameter that may be\r
-                    NULL.\r
-  @param  Edx       Pointer to the 32-bit EDX value returned by the CPUID\r
-                    instruction. This is an optional parameter that may be\r
-                    NULL.\r
+  @param  Index         The 32-bit value to load into EAX prior to invoking the\r
+                        CPUID instruction.\r
+  @param  SubIndex      The 32-bit value to load into ECX prior to invoking the\r
+                        CPUID instruction.\r
+  @param  RegisterEax   Pointer to the 32-bit EAX value returned by the CPUID\r
+                        instruction. This is an optional parameter that may be\r
+                        NULL.\r
+  @param  RegisterEbx   Pointer to the 32-bit EBX value returned by the CPUID\r
+                        instruction. This is an optional parameter that may be\r
+                        NULL.\r
+  @param  RegisterEcx   Pointer to the 32-bit ECX value returned by the CPUID\r
+                        instruction. This is an optional parameter that may be\r
+                        NULL.\r
+  @param  RegisterEdx   Pointer to the 32-bit EDX value returned by the CPUID\r
+                        instruction. This is an optional parameter that may be\r
+                        NULL.\r
 \r
   @return Index\r
 \r
index 55544d99f957953c7e5be1f4c98bc75f23231d44..8e2bb29fa5d31ab1a0e7e9186515109b5cb779c5 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   AsmMonitor function\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
   All rights reserved. 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
 \r
 **/\r
 \r
-\r
-\r
-\r
 /**\r
   Sets up a monitor buffer that is used by AsmMwait().\r
 \r
   Executes a MONITOR instruction with the register state specified by Eax, Ecx\r
   and Edx. Returns Eax. This function is only available on IA-32 and X64.\r
 \r
-  @param  Eax The value to load into EAX or RAX before executing the MONITOR\r
-              instruction.\r
-  @param  Ecx The value to load into ECX or RCX before executing the MONITOR\r
-              instruction.\r
-  @param  Edx The value to load into EDX or RDX before executing the MONITOR\r
-              instruction.\r
+  @param  RegisterEax The value to load into EAX or RAX before executing the MONITOR\r
+                      instruction.\r
+  @param  RegisterEcx The value to load into ECX or RCX before executing the MONITOR\r
+                      instruction.\r
+  @param  RegisterEdx The value to load into EDX or RDX before executing the MONITOR\r
+                      instruction.\r
 \r
-  @return Eax\r
+  @return RegisterEax\r
 \r
 **/\r
 UINTN\r
index d7aa4891a0018ac734328b8c9d40f9594e816582..1a28d2eca7e543c6af390f01d1c25aa176fb54ac 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   AsmMwait function\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
   All rights reserved. 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
 \r
 **/\r
 \r
-\r
-\r
-\r
 /**\r
   Executes an MWAIT instruction.\r
 \r
   Executes an MWAIT instruction with the register state specified by Eax and\r
   Ecx. Returns Eax. This function is only available on IA-32 and X64.\r
 \r
-  @param  Eax The value to load into EAX or RAX before executing the MONITOR\r
-              instruction.\r
-  @param  Ecx The value to load into ECX or RCX before executing the MONITOR\r
-              instruction.\r
+  @param  RegisterEax The value to load into EAX or RAX before executing the MONITOR\r
+                      instruction.\r
+  @param  RegisterEcx The value to load into ECX or RCX before executing the MONITOR\r
+                      instruction.\r
 \r
-  @return Eax\r
+  @return RegisterEax\r
 \r
 **/\r
 UINTN\r
index 0a5e0c75a75823a548c7933063276ac6c161d296..e37425ada495795dc7008090ac94b6b41fc7f80c 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   AsmReadPmc function\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
   All rights reserved. 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
@@ -12,9 +12,6 @@
 \r
 **/\r
 \r
-\r
-\r
-\r
 /**\r
   Reads the current value of a Performance Counter (PMC).\r
 \r
 UINT64\r
 EFIAPI\r
 AsmReadPmc (\r
-  IN UINT32   PmcIndex\r
+  IN UINT32   Index\r
   )\r
 {\r
   _asm {\r
-    mov     ecx, PmcIndex\r
+    mov     ecx, Index\r
     rdpmc\r
   }\r
 }\r
index 85fca3b4aac530b66970069fdc2c3f5f215170f5..733bb4eae5c7f2c3d4afd822a0a8e2b7ea192b62 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   AsmWriteCr0 function\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
   All rights reserved. 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
 \r
 **/\r
 \r
-\r
-\r
-\r
 /**\r
   Writes a value to Control Register 0 (CR0).\r
 \r
   Writes and returns a new value to CR0. This function is only available on\r
   IA-32 and X64. This writes a 32-bit value on IA-32 and a 64-bit value on X64.\r
 \r
-  @param  Cr0 The value to write to CR0.\r
+  @param  Value The value to write to CR0.\r
 \r
   @return The value written to CR0.\r
 \r
index e2ee3e3972bb70c642930ede8bdb0a1a580c9b59..436a00a8b90d4e9120e3908f662d08e3c0d6bbd7 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   AsmWriteCr2 function\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
   All rights reserved. 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
 \r
 **/\r
 \r
-\r
-\r
-\r
 /**\r
   Writes a value to Control Register 2 (CR2).\r
 \r
   Writes and returns a new value to CR2. This function is only available on\r
   IA-32 and X64. This writes a 32-bit value on IA-32 and a 64-bit value on X64.\r
 \r
-  @param  Cr2 The value to write to CR2.\r
+  @param  Value The value to write to CR2.\r
 \r
   @return The value written to CR2.\r
 \r
index 8913150b723744c466f5e7923f4383cedebc99d9..eff61f8436e4aa2b8dfb3637ad2167b0fa1f38af 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   AsmWriteCr3 function\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
   All rights reserved. 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
 \r
 **/\r
 \r
-\r
-\r
-\r
 /**\r
   Writes a value to Control Register 3 (CR3).\r
 \r
   Writes and returns a new value to CR3. This function is only available on\r
   IA-32 and X64. This writes a 32-bit value on IA-32 and a 64-bit value on X64.\r
 \r
-  @param  Cr3 The value to write to CR3.\r
+  @param  Value The value to write to CR3.\r
 \r
   @return The value written to CR3.\r
 \r
index 64431e1d39129dfec4c7e8c733a721ef19a5f266..e118d824a5b17d819e9d72b6ee9bbdf09754b7b3 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   AsmWriteCr4 function\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
   All rights reserved. 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
 \r
 **/\r
 \r
-\r
-\r
-\r
 /**\r
   Writes a value to Control Register 4 (CR4).\r
 \r
   Writes and returns a new value to CR4. This function is only available on\r
   IA-32 and X64. This writes a 32-bit value on IA-32 and a 64-bit value on X64.\r
 \r
-  @param  Cr4 The value to write to CR4.\r
+  @param  Value The value to write to CR4.\r
 \r
   @return The value written to CR4.\r
 \r
index 6c04585665686c83a8faae10838d904da05225f6..93704b97dda2b2a5c9456a992aa5a8dd955e6e56 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   AsmWriteDr0 function\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
   All rights reserved. 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
 \r
 **/\r
 \r
-\r
-\r
-\r
 /**\r
   Writes a value to Debug Register 0 (DR0).\r
 \r
   Writes and returns a new value to DR0. This function is only available on\r
   IA-32 and X64. This writes a 32-bit value on IA-32 and a 64-bit value on X64.\r
 \r
-  @param  Dr0 The value to write to Dr0.\r
+  @param  Value The value to write to Dr0.\r
 \r
   @return The value written to Debug Register 0 (DR0).\r
 \r
index d95e91909089ef626c8c2360bb2aa4862353c793..762a7c3a4660c6fbbb92a78c8244730dac45b96d 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   AsmWriteDr1 function\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
   All rights reserved. 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
 \r
 **/\r
 \r
-\r
-\r
-\r
 /**\r
   Writes a value to Debug Register 1 (DR1).\r
 \r
   Writes and returns a new value to DR1. This function is only available on\r
   IA-32 and X64. This writes a 32-bit value on IA-32 and a 64-bit value on X64.\r
 \r
-  @param  Dr1 The value to write to Dr1.\r
+  @param  Value The value to write to Dr1.\r
 \r
   @return The value written to Debug Register 1 (DR1).\r
 \r
index f124bd55b256dd315f3444a93dfeee889fa00d11..c98bea53c820b17a0e24adc53a55ee5949df27b3 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   AsmWriteDr2 function\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
   All rights reserved. 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
 \r
 **/\r
 \r
-\r
-\r
-\r
 /**\r
   Writes a value to Debug Register 2 (DR2).\r
 \r
   Writes and returns a new value to DR2. This function is only available on\r
   IA-32 and X64. This writes a 32-bit value on IA-32 and a 64-bit value on X64.\r
 \r
-  @param  Dr2 The value to write to Dr2.\r
+  @param  Value The value to write to Dr2.\r
 \r
   @return The value written to Debug Register 2 (DR2).\r
 \r
index 205e94475b8b5cb3b6d733fa6bd6f598ce80b535..4b1c04c8d195b82cee0e5777c2f30c60a7b377b7 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   AsmWriteDr3 function\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
   All rights reserved. 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
 \r
 **/\r
 \r
-\r
-\r
-\r
 /**\r
   Writes a value to Debug Register 3 (DR3).\r
 \r
   Writes and returns a new value to DR3. This function is only available on\r
   IA-32 and X64. This writes a 32-bit value on IA-32 and a 64-bit value on X64.\r
 \r
-  @param  Dr3 The value to write to Dr3.\r
+  @param  Value The value to write to Dr3.\r
 \r
   @return The value written to Debug Register 3 (DR3).\r
 \r
index 6daa786802faae2ece138cc852b816a1d358ae09..0712d150187e129a5d3ec669d299fda83d4186f1 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   AsmWriteDr4 function\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
   All rights reserved. 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
 \r
 **/\r
 \r
-\r
-\r
-\r
 /**\r
   Writes a value to Debug Register 4 (DR4).\r
 \r
   Writes and returns a new value to DR4. This function is only available on\r
   IA-32 and X64. This writes a 32-bit value on IA-32 and a 64-bit value on X64.\r
 \r
-  @param  Dr4 The value to write to Dr4.\r
+  @param  Value The value to write to Dr4.\r
 \r
   @return The value written to Debug Register 4 (DR4).\r
 \r
index e02fb70ac332051757941672cd6bb2e7b3e79799..5b8dcae3f0eaedd21acf593622870a1282626c1f 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   AsmWriteDr5 function\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
   All rights reserved. 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
 \r
 **/\r
 \r
-\r
-\r
-\r
 /**\r
   Writes a value to Debug Register 5 (DR5).\r
 \r
   Writes and returns a new value to DR5. This function is only available on\r
   IA-32 and X64. This writes a 32-bit value on IA-32 and a 64-bit value on X64.\r
 \r
-  @param  Dr5 The value to write to Dr5.\r
+  @param  Value The value to write to Dr5.\r
 \r
   @return The value written to Debug Register 5 (DR5).\r
 \r
index c721770e8fd4e42459a4c5926e835cd0f33338e4..57697a1742c4a7ded73951fd82c7d5342624b5b0 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   AsmWriteDr6 function\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
   All rights reserved. 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
 \r
 **/\r
 \r
-\r
-\r
-\r
 /**\r
   Writes a value to Debug Register 6 (DR6).\r
 \r
   Writes and returns a new value to DR6. This function is only available on\r
   IA-32 and X64. This writes a 32-bit value on IA-32 and a 64-bit value on X64.\r
 \r
-  @param  Dr6 The value to write to Dr6.\r
+  @param  Value The value to write to Dr6.\r
 \r
   @return The value written to Debug Register 6 (DR6).\r
 \r
index 94c32579448f0e2b43a60a9878c805ddd844fa95..2f9f88d69e5759c014ac3eaada76e2db72169a63 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   AsmWriteDr7 function\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
   All rights reserved. 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
 \r
 **/\r
 \r
-\r
-\r
-\r
 /**\r
   Writes a value to Debug Register 7 (DR7).\r
 \r
   Writes and returns a new value to DR7. This function is only available on\r
   IA-32 and X64. This writes a 32-bit value on IA-32 and a 64-bit value on X64.\r
 \r
-  @param  Dr7 The value to write to Dr7.\r
+  @param  Value The value to write to Dr7.\r
 \r
   @return The value written to Debug Register 7 (DR7).\r
 \r
index 80921c82dfffd4d37f2e5d31840eb798e6c88729..0581b5887a6b924a1b2f542b2fb5dae55e11ff12 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   InterLockedIncrement function\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
   All rights reserved. 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
index 93a0af408b9565c6d252a79901eae93d5b67bb88..6ec22a3e694294a420a02caf3913691405ef0dc7 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   CpuBreakpoint function.\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
   All rights reserved. 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
index 77d8c597240e171f6e70373e58e49239c11990f2..bc9c0b91e925a237593c3f23d0d23dac3872b409 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   CpuBreakpoint function.\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
   All rights reserved. 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