summaryrefslogtreecommitdiffstats
path: root/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c
diff options
context:
space:
mode:
authorqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2008-05-21 01:40:12 +0000
committerqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2008-05-21 01:40:12 +0000
commit23c98c9417908188207408afa3f6901b8aca826a (patch)
treeb96e9e1f0810ea899a4fd23d57a78ab11a404d24 /MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c
parent3b1d9fd5790d50982c6366669da74bf4dcf60b19 (diff)
downloadedk2-23c98c9417908188207408afa3f6901b8aca826a.tar.gz
edk2-23c98c9417908188207408afa3f6901b8aca826a.tar.bz2
edk2-23c98c9417908188207408afa3f6901b8aca826a.zip
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/Dispatcher/Dispatcher.c')
-rw-r--r--MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c39
1 files changed, 11 insertions, 28 deletions
diff --git a/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c b/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c
index 5a0efad1b7..064ea1190e 100644
--- a/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c
+++ b/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c
@@ -26,14 +26,14 @@
Depex - Dependency Expresion.
SOR - Schedule On Request - Don't schedule if this bit is set.
-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.
**/
@@ -105,7 +105,6 @@ FV_FILEPATH_DEVICE_PATH mFvDevicePath;
@param InsertedDriverEntry The driver to insert on the ScheduledLink Queue
**/
-STATIC
VOID
CoreInsertOnScheduledQueueWhileProcessingBeforeAndAfter (
IN EFI_CORE_DRIVER_ENTRY *InsertedDriverEntry
@@ -128,7 +127,6 @@ CoreInsertOnScheduledQueueWhileProcessingBeforeAndAfter (
@param Context Event Context, not used.
**/
-STATIC
VOID
EFIAPI
CoreFwVolEventProtocolNotify (
@@ -149,7 +147,6 @@ CoreFwVolEventProtocolNotify (
@return Pointer to device path constructed from FvHandle and DriverName
**/
-STATIC
EFI_DEVICE_PATH_PROTOCOL *
CoreFvToDevicePath (
IN EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv,
@@ -177,12 +174,11 @@ CoreFvToDevicePath (
time.
**/
-STATIC
EFI_STATUS
CoreAddToDriverList (
- IN EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv,
- IN EFI_HANDLE FvHandle,
- IN EFI_GUID *DriverName
+ IN EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv,
+ IN EFI_HANDLE FvHandle,
+ IN EFI_GUID *DriverName
);
/**
@@ -197,7 +193,6 @@ CoreAddToDriverList (
@retval EFI_SUCCESS Function successfully returned.
**/
-STATIC
EFI_STATUS
CoreProcessFvImageFile (
IN EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv,
@@ -210,7 +205,6 @@ CoreProcessFvImageFile (
Enter critical section by gaining lock on mDispatcherLock.
**/
-STATIC
VOID
CoreAcquireDispatcherLock (
VOID
@@ -224,7 +218,6 @@ CoreAcquireDispatcherLock (
Exit critical section by releasing lock on mDispatcherLock.
**/
-STATIC
VOID
CoreReleaseDispatcherLock (
VOID
@@ -246,7 +239,6 @@ CoreReleaseDispatcherLock (
@retval Error DEPEX not found.
**/
-STATIC
EFI_STATUS
CoreGetDepexSectionAndPreProccess (
IN EFI_CORE_DRIVER_ENTRY *DriverEntry
@@ -314,7 +306,6 @@ CoreGetDepexSectionAndPreProccess (
not set.
**/
-EFI_DXESERVICE
EFI_STATUS
EFIAPI
CoreSchedule (
@@ -361,7 +352,6 @@ CoreSchedule (
@retval EFI_NOT_FOUND The file was not found in the untrusted state.
**/
-EFI_DXESERVICE
EFI_STATUS
EFIAPI
CoreTrust (
@@ -413,7 +403,6 @@ CoreTrust (
@retval EFI_SUCCESS One or more DXE Drivers were dispatched
**/
-EFI_DXESERVICE
EFI_STATUS
EFIAPI
CoreDispatcher (
@@ -558,7 +547,6 @@ CoreDispatcher (
@param InsertedDriverEntry The driver to insert on the ScheduledLink Queue
**/
-STATIC
VOID
CoreInsertOnScheduledQueueWhileProcessingBeforeAndAfter (
IN EFI_CORE_DRIVER_ENTRY *InsertedDriverEntry
@@ -620,7 +608,6 @@ CoreInsertOnScheduledQueueWhileProcessingBeforeAndAfter (
processed
**/
-STATIC
BOOLEAN
FvHasBeenProcessed (
IN EFI_HANDLE FvHandle
@@ -647,7 +634,6 @@ FvHasBeenProcessed (
@param FvHandle The handle of a FV that has been processed
**/
-STATIC
VOID
FvIsBeingProcesssed (
IN EFI_HANDLE FvHandle
@@ -679,7 +665,6 @@ FvIsBeingProcesssed (
@return Pointer to device path constructed from FvHandle and DriverName
**/
-STATIC
EFI_DEVICE_PATH_PROTOCOL *
CoreFvToDevicePath (
IN EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv,
@@ -785,7 +770,6 @@ CoreAddToDriverList (
@retval FALSE Not found.
**/
-STATIC
BOOLEAN
FvFoundInHobFv2 (
IN EFI_HANDLE FvHandle,
@@ -922,7 +906,6 @@ CoreProcessFvImageFile (
@param Context Event Context, not used.
**/
-STATIC
VOID
EFIAPI
CoreFwVolEventProtocolNotify (