diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-09-04 09:37:28 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-09-04 09:37:28 +0000 |
commit | ed66e1bc0d2be0a185fc47adab4930c3b7e2767f (patch) | |
tree | 5709b407529f37f5a069d36ec5a0d3b04db9c3ba /IntelFrameworkPkg | |
parent | 1f3a753ee68ac1c7a620e8064fdda718cf413761 (diff) | |
download | edk2-ed66e1bc0d2be0a185fc47adab4930c3b7e2767f.tar.gz edk2-ed66e1bc0d2be0a185fc47adab4930c3b7e2767f.tar.bz2 edk2-ed66e1bc0d2be0a185fc47adab4930c3b7e2767f.zip |
clean up the un-suitable ';' location when declaring the functions.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5820 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkPkg')
-rw-r--r-- | IntelFrameworkPkg/Include/Library/FrameworkHiiLib.h | 3 | ||||
-rw-r--r-- | IntelFrameworkPkg/Include/Protocol/PciPlatform.h | 12 | ||||
-rw-r--r-- | IntelFrameworkPkg/Include/Protocol/SmmBase.h | 24 |
3 files changed, 13 insertions, 26 deletions
diff --git a/IntelFrameworkPkg/Include/Library/FrameworkHiiLib.h b/IntelFrameworkPkg/Include/Library/FrameworkHiiLib.h index 771d70cad0..b6bd85a0cf 100644 --- a/IntelFrameworkPkg/Include/Library/FrameworkHiiLib.h +++ b/IntelFrameworkPkg/Include/Library/FrameworkHiiLib.h @@ -46,7 +46,6 @@ PreparePackages ( IN UINTN NumberOfPackages,
IN CONST EFI_GUID *Guid OPTIONAL,
...
- )
-;
+ );
#endif
diff --git a/IntelFrameworkPkg/Include/Protocol/PciPlatform.h b/IntelFrameworkPkg/Include/Protocol/PciPlatform.h index 24c345b152..32f5742cc6 100644 --- a/IntelFrameworkPkg/Include/Protocol/PciPlatform.h +++ b/IntelFrameworkPkg/Include/Protocol/PciPlatform.h @@ -79,8 +79,7 @@ EFI_STATUS IN EFI_HANDLE HostBridge,
IN EFI_PCI_HOST_BRIDGE_RESOURCE_ALLOCATION_PHASE Phase,
IN EFI_PCI_CHIPSET_EXECUTION_PHASE ChipsetPhase
-)
-;
+);
/**
@@ -115,8 +114,7 @@ EFI_STATUS IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_PCI_ADDRESS PciAddress,
IN EFI_PCI_CONTROLLER_RESOURCE_ALLOCATION_PHASE Phase,
IN EFI_PCI_CHIPSET_EXECUTION_PHASE ChipsetPhase
-)
-;
+);
/**
@@ -136,8 +134,7 @@ EFI_STATUS (EFIAPI *EFI_PCI_PLATFORM_GET_PLATFORM_POLICY)(
IN EFI_PCI_PLATFORM_PROTOCOL *This,
OUT EFI_PCI_PLATFORM_POLICY *PciPolicy
-)
-;
+);
/**
@@ -174,8 +171,7 @@ EFI_STATUS IN EFI_HANDLE PciHandle,
OUT VOID **RomImage,
OUT UINTN *RomSize
-)
-;
+);
/**
@par Protocol Description:
diff --git a/IntelFrameworkPkg/Include/Protocol/SmmBase.h b/IntelFrameworkPkg/Include/Protocol/SmmBase.h index cf4feb0345..69cd2b8f29 100644 --- a/IntelFrameworkPkg/Include/Protocol/SmmBase.h +++ b/IntelFrameworkPkg/Include/Protocol/SmmBase.h @@ -107,8 +107,7 @@ EFI_STATUS IN UINTN SourceSize,
OUT EFI_HANDLE *ImageHandle,
IN BOOLEAN LegacyIA32Binary OPTIONAL
- )
-;
+ );
/**
Remove a given driver SMRAM. This is the equivalent of performing
@@ -128,8 +127,7 @@ EFI_STATUS (EFIAPI *EFI_SMM_UNREGISTER_HANDLER)(
IN EFI_SMM_BASE_PROTOCOL *This,
IN EFI_HANDLE ImageHandle
- )
-;
+ );
/**
The SMM Inter-module Communicate Service Communicate() function
@@ -154,8 +152,7 @@ EFI_STATUS IN EFI_HANDLE ImageHandle,
IN OUT VOID *CommunicationBuffer,
IN OUT UINTN *SourceSize
- )
-;
+ );
/**
Register a callback to execute within SMM.
@@ -186,8 +183,7 @@ EFI_STATUS IN EFI_SMM_CALLBACK_ENTRY_POINT CallbackAddress,
IN BOOLEAN MakeLast OPTIONAL,
IN BOOLEAN FloatingPointSave OPTIONAL
- )
-;
+ );
/**
The SmmAllocatePool() function allocates a memory region of Size bytes from memory of
@@ -216,8 +212,7 @@ EFI_STATUS IN EFI_MEMORY_TYPE PoolType,
IN UINTN Size,
OUT VOID **Buffer
- )
-;
+ );
/**
The SmmFreePool() function returns the memory specified by Buffer to the system.
@@ -237,8 +232,7 @@ EFI_STATUS (EFIAPI *EFI_SMM_FREE_POOL)(
IN EFI_SMM_BASE_PROTOCOL *This,
IN VOID *Buffer
- )
-;
+ );
/**
This routine tells caller if execution context is SMM or not.
@@ -254,8 +248,7 @@ EFI_STATUS (EFIAPI *EFI_SMM_INSIDE_OUT)(
IN EFI_SMM_BASE_PROTOCOL *This,
OUT BOOLEAN *InSmm
- )
-;
+ );
/**
The GetSmstLocation() function returns the locatin of the System Management
@@ -276,8 +269,7 @@ EFI_STATUS (EFIAPI *EFI_SMM_GET_SMST_LOCATION)(
IN EFI_SMM_BASE_PROTOCOL *This,
IN OUT EFI_SMM_SYSTEM_TABLE **Smst
- )
-;
+ );
/**
@par Protocol Description:
|