]> git.proxmox.com Git - mirror_edk2.git/commitdiff
UefiCpuPkg/PeiCpuException: Fix coding style issue
authorRuiyu Ni <ruiyu.ni@intel.com>
Fri, 7 Sep 2018 10:12:46 +0000 (18:12 +0800)
committerRuiyu Ni <ruiyu.ni@intel.com>
Mon, 10 Sep 2018 02:22:27 +0000 (10:22 +0800)
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
Reviewed-by: Dandan Bi <dandan.bi@intel.com>
UefiCpuPkg/Library/CpuExceptionHandlerLib/PeiCpuException.c

index 658f1087a258771018d4c6f0d5b21b3dd47be321..292e89bed75341179b46a22f98aae54df4c16386 100644 (file)
@@ -46,7 +46,7 @@ GetExceptionHandlerData (
 \r
   AsmReadIdtr (&IdtDescriptor);\r
   IdtTable = (IA32_IDT_GATE_DESCRIPTOR *)IdtDescriptor.Base;\r
-  \r
+\r
   Exception0StubHeader = (EXCEPTION0_STUB_HEADER *)ArchGetIdtHandler (&IdtTable[0]);\r
   return Exception0StubHeader->ExceptionHandlerData;\r
 }\r
@@ -58,7 +58,7 @@ GetExceptionHandlerData (
   exception handler data. The new allocated memory layout follows structure EXCEPTION0_STUB_HEADER.\r
   The code assumes that all processors uses the same exception handler for #0 exception.\r
 \r
-  @param  pointer to exception handler data.\r
+  @param ExceptionHandlerData  pointer to exception handler data.\r
 **/\r
 VOID\r
 SetExceptionHandlerData (\r
@@ -74,7 +74,7 @@ SetExceptionHandlerData (
   //\r
   AsmReadIdtr (&IdtDescriptor);\r
   IdtTable = (IA32_IDT_GATE_DESCRIPTOR *)IdtDescriptor.Base;\r
-  \r
+\r
   Exception0StubHeader = AllocatePool (sizeof (*Exception0StubHeader));\r
   ASSERT (Exception0StubHeader != NULL);\r
   CopyMem (\r