diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-03-19 09:01:03 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-03-19 09:01:03 +0000 |
commit | 615c6dd0d4c428658d761d96bcb51f2fbd5e7523 (patch) | |
tree | dda5d57ab1af8db7279564adf9b53eefdbf5edd2 | |
parent | 814bae5269282fa8f2450182d4ee01ead7044e00 (diff) | |
download | edk2-615c6dd0d4c428658d761d96bcb51f2fbd5e7523.zip edk2-615c6dd0d4c428658d761d96bcb51f2fbd5e7523.tar.gz edk2-615c6dd0d4c428658d761d96bcb51f2fbd5e7523.tar.bz2 |
Modify all file header to follow doxygen format
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4917 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdeModulePkg/Core/Pei/BootMode/BootMode.c | 4 | ||||
-rw-r--r-- | MdeModulePkg/Core/Pei/Dependency/dependency.c | 4 | ||||
-rw-r--r-- | MdeModulePkg/Core/Pei/Dependency/dependency.h | 4 | ||||
-rw-r--r-- | MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c | 4 | ||||
-rw-r--r-- | MdeModulePkg/Core/Pei/FwVol/FwVol.c | 4 | ||||
-rw-r--r-- | MdeModulePkg/Core/Pei/Hob/Hob.c | 4 | ||||
-rw-r--r-- | MdeModulePkg/Core/Pei/Image/Image.c | 4 | ||||
-rw-r--r-- | MdeModulePkg/Core/Pei/Memory/MemoryServices.c | 4 | ||||
-rw-r--r-- | MdeModulePkg/Core/Pei/PeiMain.h | 4 | ||||
-rw-r--r-- | MdeModulePkg/Core/Pei/PeiMain/PeiMain.c | 4 | ||||
-rw-r--r-- | MdeModulePkg/Core/Pei/Ppi/Ppi.c | 4 | ||||
-rw-r--r-- | MdeModulePkg/Core/Pei/Reset/Reset.c | 4 | ||||
-rw-r--r-- | MdeModulePkg/Core/Pei/Security/Security.c | 4 | ||||
-rw-r--r-- | MdeModulePkg/Core/Pei/StatusCode/StatusCode.c | 4 |
14 files changed, 28 insertions, 28 deletions
diff --git a/MdeModulePkg/Core/Pei/BootMode/BootMode.c b/MdeModulePkg/Core/Pei/BootMode/BootMode.c index fbfd02f..afa3c89 100644 --- a/MdeModulePkg/Core/Pei/BootMode/BootMode.c +++ b/MdeModulePkg/Core/Pei/BootMode/BootMode.c @@ -1,4 +1,4 @@ -/*++
+/** @file
Copyright (c) 2006, Intel Corporation
All rights reserved. This program and the accompanying materials
@@ -21,7 +21,7 @@ Abstract: Revision History
---*/
+**/
#include <PeiMain.h>
diff --git a/MdeModulePkg/Core/Pei/Dependency/dependency.c b/MdeModulePkg/Core/Pei/Dependency/dependency.c index 73c85d0..5400667 100644 --- a/MdeModulePkg/Core/Pei/Dependency/dependency.c +++ b/MdeModulePkg/Core/Pei/Dependency/dependency.c @@ -1,4 +1,4 @@ -/*++
+/** @file
Copyright (c) 2006, Intel Corporation
All rights reserved. This program and the accompanying materials
@@ -21,7 +21,7 @@ Abstract: if a driver can be scheduled for execution. The criteria for
schedulability is that the dependency expression is satisfied.
---*/
+**/
#include <PeiMain.h>
#include "dependency.h"
diff --git a/MdeModulePkg/Core/Pei/Dependency/dependency.h b/MdeModulePkg/Core/Pei/Dependency/dependency.h index a6190c4..c1644a4 100644 --- a/MdeModulePkg/Core/Pei/Dependency/dependency.h +++ b/MdeModulePkg/Core/Pei/Dependency/dependency.h @@ -1,4 +1,4 @@ -/*++
+/** @file
Copyright (c) 2006, Intel Corporation
All rights reserved. This program and the accompanying materials
@@ -18,7 +18,7 @@ Abstract: This module contains data specific to dependency expressions
and local function prototypes.
---*/
+**/
#ifndef _PEI_DEPENDENCY_H_
#define _PEI_DEPENDENCY_H_
diff --git a/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c b/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c index a5dce2b..f4b18d5 100644 --- a/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c +++ b/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c @@ -1,4 +1,4 @@ -/*++
+/** @file
Copyright (c) 2006, Intel Corporation
All rights reserved. This program and the accompanying materials
@@ -19,7 +19,7 @@ Abstract: Revision History
---*/
+**/
#include <PeiMain.h>
diff --git a/MdeModulePkg/Core/Pei/FwVol/FwVol.c b/MdeModulePkg/Core/Pei/FwVol/FwVol.c index 4947912..1af4a76 100644 --- a/MdeModulePkg/Core/Pei/FwVol/FwVol.c +++ b/MdeModulePkg/Core/Pei/FwVol/FwVol.c @@ -1,4 +1,4 @@ -/*++
+/** @file
Copyright (c) 2006 - 2007, Intel Corporation
All rights reserved. This program and the accompanying materials
@@ -17,7 +17,7 @@ Abstract: Pei Core Firmware File System service routines.
---*/
+**/
#include <PeiMain.h>
diff --git a/MdeModulePkg/Core/Pei/Hob/Hob.c b/MdeModulePkg/Core/Pei/Hob/Hob.c index 803a4e0..c353fa5 100644 --- a/MdeModulePkg/Core/Pei/Hob/Hob.c +++ b/MdeModulePkg/Core/Pei/Hob/Hob.c @@ -1,4 +1,4 @@ -/*++
+/** @file
Copyright (c) 2006, Intel Corporation
All rights reserved. This program and the accompanying materials
@@ -17,7 +17,7 @@ Abstract: EFI PEI Core HOB services
---*/
+**/
#include <PeiMain.h>
diff --git a/MdeModulePkg/Core/Pei/Image/Image.c b/MdeModulePkg/Core/Pei/Image/Image.c index 2c7e584..98553eb 100644 --- a/MdeModulePkg/Core/Pei/Image/Image.c +++ b/MdeModulePkg/Core/Pei/Image/Image.c @@ -1,4 +1,4 @@ -/*++
+/** @file
Copyright (c) 2006 - 2007, Intel Corporation
All rights reserved. This program and the accompanying materials
@@ -17,7 +17,7 @@ Abstract: Pei Core Load Image Support
---*/
+**/
#include <PeiMain.h>
diff --git a/MdeModulePkg/Core/Pei/Memory/MemoryServices.c b/MdeModulePkg/Core/Pei/Memory/MemoryServices.c index a64bb3c..f4212c8 100644 --- a/MdeModulePkg/Core/Pei/Memory/MemoryServices.c +++ b/MdeModulePkg/Core/Pei/Memory/MemoryServices.c @@ -1,4 +1,4 @@ -/*++
+/** @file
Copyright (c) 2006, Intel Corporation
All rights reserved. This program and the accompanying materials
@@ -17,7 +17,7 @@ Abstract: EFI PEI Core memory services
---*/
+**/
#include <PeiMain.h>
diff --git a/MdeModulePkg/Core/Pei/PeiMain.h b/MdeModulePkg/Core/Pei/PeiMain.h index 3579586..74d70ac 100644 --- a/MdeModulePkg/Core/Pei/PeiMain.h +++ b/MdeModulePkg/Core/Pei/PeiMain.h @@ -1,4 +1,4 @@ -/*++
+/** @file
Copyright (c) 2006 - 2007, Intel Corporation
All rights reserved. This program and the accompanying materials
@@ -19,7 +19,7 @@ Abstract: Revision History
---*/
+**/
#ifndef _PEI_MAIN_H_
#define _PEI_MAIN_H_
diff --git a/MdeModulePkg/Core/Pei/PeiMain/PeiMain.c b/MdeModulePkg/Core/Pei/PeiMain/PeiMain.c index 3b1d42e..85dbbd1 100644 --- a/MdeModulePkg/Core/Pei/PeiMain/PeiMain.c +++ b/MdeModulePkg/Core/Pei/PeiMain/PeiMain.c @@ -1,4 +1,4 @@ -/*++
+/** @file
Copyright (c) 2006, Intel Corporation
All rights reserved. This program and the accompanying materials
@@ -19,7 +19,7 @@ Abstract: Revision History
---*/
+**/
#include <PeiMain.h>
diff --git a/MdeModulePkg/Core/Pei/Ppi/Ppi.c b/MdeModulePkg/Core/Pei/Ppi/Ppi.c index bb358a2..1e40022 100644 --- a/MdeModulePkg/Core/Pei/Ppi/Ppi.c +++ b/MdeModulePkg/Core/Pei/Ppi/Ppi.c @@ -1,4 +1,4 @@ -/*++
+/** @file
Copyright (c) 2006, Intel Corporation
All rights reserved. This program and the accompanying materials
@@ -19,7 +19,7 @@ Abstract: Revision History
---*/
+**/
#include <PeiMain.h>
diff --git a/MdeModulePkg/Core/Pei/Reset/Reset.c b/MdeModulePkg/Core/Pei/Reset/Reset.c index 2788a0e..4fcb59f 100644 --- a/MdeModulePkg/Core/Pei/Reset/Reset.c +++ b/MdeModulePkg/Core/Pei/Reset/Reset.c @@ -1,4 +1,4 @@ -/*++
+/** @file
Copyright (c) 2006, Intel Corporation
All rights reserved. This program and the accompanying materials
@@ -19,7 +19,7 @@ Abstract: Revision History
---*/
+**/
#include <PeiMain.h>
diff --git a/MdeModulePkg/Core/Pei/Security/Security.c b/MdeModulePkg/Core/Pei/Security/Security.c index 8fda8bd..ac02f59 100644 --- a/MdeModulePkg/Core/Pei/Security/Security.c +++ b/MdeModulePkg/Core/Pei/Security/Security.c @@ -1,4 +1,4 @@ -/*++
+/** @file
Copyright (c) 2006, Intel Corporation
All rights reserved. This program and the accompanying materials
@@ -17,7 +17,7 @@ Abstract: EFI PEI Core Security services
---*/
+**/
#include <PeiMain.h>
diff --git a/MdeModulePkg/Core/Pei/StatusCode/StatusCode.c b/MdeModulePkg/Core/Pei/StatusCode/StatusCode.c index 04a4519..bd8cb26 100644 --- a/MdeModulePkg/Core/Pei/StatusCode/StatusCode.c +++ b/MdeModulePkg/Core/Pei/StatusCode/StatusCode.c @@ -1,4 +1,4 @@ -/*++
+/** @file
Copyright (c) 2006, Intel Corporation
All rights reserved. This program and the accompanying materials
@@ -19,7 +19,7 @@ Abstract: Revision History
---*/
+**/
#include <PeiMain.h>
|