diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-05-21 01:40:12 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-05-21 01:40:12 +0000 |
commit | 23c98c9417908188207408afa3f6901b8aca826a (patch) | |
tree | b96e9e1f0810ea899a4fd23d57a78ab11a404d24 /MdeModulePkg/Core/Dxe/Hand.h | |
parent | 3b1d9fd5790d50982c6366669da74bf4dcf60b19 (diff) | |
download | edk2-platforms-23c98c9417908188207408afa3f6901b8aca826a.tar.xz |
Update to fix minor coding style issues.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5256 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Core/Dxe/Hand.h')
-rw-r--r-- | MdeModulePkg/Core/Dxe/Hand.h | 66 |
1 files changed, 28 insertions, 38 deletions
diff --git a/MdeModulePkg/Core/Dxe/Hand.h b/MdeModulePkg/Core/Dxe/Hand.h index e52b7e390d..c6a698dbd4 100644 --- a/MdeModulePkg/Core/Dxe/Hand.h +++ b/MdeModulePkg/Core/Dxe/Hand.h @@ -1,15 +1,14 @@ -/** @file
-
+/** @file
Support functions for managing protocol.
-Copyright (c) 2006 - 2008, Intel Corporation
-All rights reserved. This program and the accompanying materials
-are licensed and made available under the terms and conditions of the BSD License
-which accompanies this distribution. The full text of the license may be found at
-http://opensource.org/licenses/bsd-license.php
-
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+Copyright (c) 2006 - 2008, Intel Corporation. <BR>
+All rights reserved. This program and the accompanying materials
+are licensed and made available under the terms and conditions of the BSD License
+which accompanies this distribution. The full text of the license may be found at
+http://opensource.org/licenses/bsd-license.php
+
+THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
**/
@@ -113,10 +112,9 @@ typedef struct { **/
PROTOCOL_ENTRY *
CoreFindProtocolEntry (
- IN EFI_GUID *Protocol,
- IN BOOLEAN Create
- )
-;
+ IN EFI_GUID *Protocol,
+ IN BOOLEAN Create
+ );
/**
@@ -127,9 +125,8 @@ CoreFindProtocolEntry ( **/
VOID
CoreNotifyProtocolEntry (
- IN PROTOCOL_ENTRY *ProtEntry
- )
-;
+ IN PROTOCOL_ENTRY *ProtEntry
+ );
/**
@@ -146,11 +143,10 @@ CoreNotifyProtocolEntry ( **/
PROTOCOL_INTERFACE *
CoreFindProtocolInterface (
- IN IHANDLE *Handle,
- IN EFI_GUID *Protocol,
- IN VOID *Interface
- )
-;
+ IN IHANDLE *Handle,
+ IN EFI_GUID *Protocol,
+ IN VOID *Interface
+ );
/**
@@ -165,11 +161,10 @@ CoreFindProtocolInterface ( **/
PROTOCOL_INTERFACE *
CoreRemoveInterfaceFromProtocol (
- IN IHANDLE *Handle,
- IN EFI_GUID *Protocol,
- IN VOID *Interface
- )
-;
+ IN IHANDLE *Handle,
+ IN EFI_GUID *Protocol,
+ IN VOID *Interface
+ );
/**
@@ -183,9 +178,8 @@ CoreRemoveInterfaceFromProtocol ( **/
EFI_STATUS
CoreUnregisterProtocolNotify (
- IN EFI_EVENT Event
- )
-;
+ IN EFI_EVENT Event
+ );
/**
@@ -206,8 +200,7 @@ EFI_STATUS CoreDisconnectControllersUsingProtocolInterface (
IN EFI_HANDLE UserHandle,
IN PROTOCOL_INTERFACE *Prot
- )
-;
+ );
/**
@@ -217,8 +210,7 @@ CoreDisconnectControllersUsingProtocolInterface ( VOID
CoreAcquireProtocolLock (
VOID
- )
-;
+ );
/**
@@ -228,8 +220,7 @@ CoreAcquireProtocolLock ( VOID
CoreReleaseProtocolLock (
VOID
- )
-;
+ );
/**
@@ -244,8 +235,7 @@ CoreReleaseProtocolLock ( EFI_STATUS
CoreValidateHandle (
IN EFI_HANDLE UserHandle
- )
-;
+ );
//
// Externs
|