diff options
author | ydong10 <ydong10@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-11-01 09:00:23 +0000 |
---|---|---|
committer | ydong10 <ydong10@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-11-01 09:00:23 +0000 |
commit | 1e51d5954b7748361cb0dbe0f5b2a62d6394439e (patch) | |
tree | 10b1d6356181306f52f9b07aa559dae325485083 /UefiCpuPkg/CpuDxe | |
parent | 68d3f2fb61dba9bbde4caa214a0c5bb3bc6ee7da (diff) | |
download | edk2-1e51d5954b7748361cb0dbe0f5b2a62d6394439e.zip edk2-1e51d5954b7748361cb0dbe0f5b2a62d6394439e.tar.gz edk2-1e51d5954b7748361cb0dbe0f5b2a62d6394439e.tar.bz2 |
Refine code to follow the coding style.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10992 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'UefiCpuPkg/CpuDxe')
-rw-r--r-- | UefiCpuPkg/CpuDxe/CpuDxe.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/UefiCpuPkg/CpuDxe/CpuDxe.c b/UefiCpuPkg/CpuDxe/CpuDxe.c index 35fba39..c5f3bb7 100644 --- a/UefiCpuPkg/CpuDxe/CpuDxe.c +++ b/UefiCpuPkg/CpuDxe/CpuDxe.c @@ -114,6 +114,14 @@ UINT32 mErrorCodeFlag = 0x00027d00; //
// Local function prototypes
//
+
+/**
+ Set Interrupt Descriptor Table Handler Address.
+
+ @param Index The Index of the interrupt descriptor table handle.
+ @param Handler Handler address.
+
+**/
VOID
SetInterruptDescriptorTableHandlerAddress (
IN UINTN Index,
@@ -1014,7 +1022,13 @@ RefreshGcdMemoryAttributes ( mIsFlushingGCD = FALSE;
}
+/**
+ Set Interrupt Descriptor Table Handler Address.
+
+ @param Index The Index of the interrupt descriptor table handle.
+ @param Handler Handler address.
+**/
VOID
SetInterruptDescriptorTableHandlerAddress (
IN UINTN Index,
|