summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Core/Pei
diff options
context:
space:
mode:
Diffstat (limited to 'MdeModulePkg/Core/Pei')
-rw-r--r--MdeModulePkg/Core/Pei/BootMode/BootMode.c4
-rw-r--r--MdeModulePkg/Core/Pei/Dependency/dependency.c4
-rw-r--r--MdeModulePkg/Core/Pei/Dependency/dependency.h4
-rw-r--r--MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c4
-rw-r--r--MdeModulePkg/Core/Pei/FwVol/FwVol.c4
-rw-r--r--MdeModulePkg/Core/Pei/Hob/Hob.c4
-rw-r--r--MdeModulePkg/Core/Pei/Image/Image.c4
-rw-r--r--MdeModulePkg/Core/Pei/Memory/MemoryServices.c4
-rw-r--r--MdeModulePkg/Core/Pei/PeiMain.h4
-rw-r--r--MdeModulePkg/Core/Pei/PeiMain/PeiMain.c4
-rw-r--r--MdeModulePkg/Core/Pei/Ppi/Ppi.c4
-rw-r--r--MdeModulePkg/Core/Pei/Reset/Reset.c4
-rw-r--r--MdeModulePkg/Core/Pei/Security/Security.c4
-rw-r--r--MdeModulePkg/Core/Pei/StatusCode/StatusCode.c4
14 files changed, 28 insertions, 28 deletions
diff --git a/MdeModulePkg/Core/Pei/BootMode/BootMode.c b/MdeModulePkg/Core/Pei/BootMode/BootMode.c
index fbfd02f84c..afa3c89ebc 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 73c85d0b2c..54006675f4 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 a6190c4441..c1644a4a94 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 a5dce2b5aa..f4b18d56d2 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 4947912535..1af4a76036 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 803a4e05de..c353fa5bfa 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 2c7e5846cb..98553eb10c 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 a64bb3c633..f4212c849e 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 3579586858..74d70ac8ff 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 3b1d42e509..85dbbd1a6a 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 bb358a25d3..1e400225fb 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 2788a0e161..4fcb59f372 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 8fda8bd055..ac02f594f3 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 04a4519844..bd8cb26e61 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>