summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Universal/Network/DpcDxe
diff options
context:
space:
mode:
authorvanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2008-06-30 07:20:33 +0000
committervanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2008-06-30 07:20:33 +0000
commit7bce0c5a0eb806a55d7231b05769d0efc71cdc59 (patch)
tree77078ca79b96fb4f426e501beca674c627c30247 /MdeModulePkg/Universal/Network/DpcDxe
parent4611e327f49b245d7efcefbbff2070ab9ed0fc8b (diff)
downloadedk2-platforms-7bce0c5a0eb806a55d7231b05769d0efc71cdc59.tar.xz
Clean codes per ECC.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5384 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/Network/DpcDxe')
-rw-r--r--MdeModulePkg/Universal/Network/DpcDxe/Dpc.c30
1 files changed, 12 insertions, 18 deletions
diff --git a/MdeModulePkg/Universal/Network/DpcDxe/Dpc.c b/MdeModulePkg/Universal/Network/DpcDxe/Dpc.c
index b6a82612cc..d75edcdb73 100644
--- a/MdeModulePkg/Universal/Network/DpcDxe/Dpc.c
+++ b/MdeModulePkg/Universal/Network/DpcDxe/Dpc.c
@@ -1,6 +1,6 @@
/** @file
-Copyright (c) 2007, Intel Corporation
+Copyright (c) 2007 - 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
@@ -299,29 +299,23 @@ DpcDispatchDpc (
return ReturnStatus;
}
+/**
+ The entry point for DPC driver which installs the EFI_DPC_PROTOCOL onto a new handle.
+
+ @param ImageHandle The image handle of the driver.
+ @param SystemTable The system table.
+
+ @retval EFI_SUCCES The DPC queues were initialized and the EFI_DPC_PROTOCOL was
+ installed onto a new handle.
+ @retval Others Failed to install EFI_DPC_PROTOCOL.
+
+**/
EFI_STATUS
EFIAPI
DpcDriverEntryPoint (
IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE *SystemTable
)
-/*++
-
-Routine Description:
-
- The entry point for DPC driver which installs the EFI_DPC_PROTOCOL onto a new handle.
-
-Arguments:
-
- ImageHandle - The image handle of the driver.
- SystemTable - The system table.
-
-Returns:
-
- EFI_SUCCESS - The DPC queues were initialized and the EFI_DPC_PROTOCOL was
- installed onto a new handle.
-
---*/
{
EFI_STATUS Status;
UINTN Index;