summaryrefslogtreecommitdiff
path: root/MdeModulePkg
diff options
context:
space:
mode:
Diffstat (limited to 'MdeModulePkg')
-rw-r--r--MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c2
-rw-r--r--MdeModulePkg/Core/Dxe/Dispatcher/dependency.c2
-rw-r--r--MdeModulePkg/Core/Dxe/DxeMain.h2
-rw-r--r--MdeModulePkg/Core/Dxe/Event/event.c2
-rw-r--r--MdeModulePkg/Include/Protocol/LoadPe32Image.h4
-rw-r--r--MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsole.c2
-rw-r--r--MdeModulePkg/Universal/Console/TerminalDxe/TerminalConIn.c2
-rw-r--r--MdeModulePkg/Universal/DebugPortDxe/DebugPort.c2
-rw-r--r--MdeModulePkg/Universal/Disk/PartitionDxe/Gpt.c2
9 files changed, 10 insertions, 10 deletions
diff --git a/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c b/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c
index da0555d8f9..0529d36d79 100644
--- a/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c
+++ b/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c
@@ -244,7 +244,7 @@ Returns:
DriverEntry->DepexProtocolError = TRUE;
} else {
//
- // If no Depex assume EFI 1.1 driver model
+ // If no Depex assume UEFI 2.0 driver model
//
DriverEntry->Depex = NULL;
DriverEntry->Dependent = TRUE;
diff --git a/MdeModulePkg/Core/Dxe/Dispatcher/dependency.c b/MdeModulePkg/Core/Dxe/Dispatcher/dependency.c
index 7c2093b61d..84c44a10ee 100644
--- a/MdeModulePkg/Core/Dxe/Dispatcher/dependency.c
+++ b/MdeModulePkg/Core/Dxe/Dispatcher/dependency.c
@@ -280,7 +280,7 @@ Returns:
if (DriverEntry->Depex == NULL) {
//
- // A NULL Depex means treat the driver like an EFI 1.0 thing.
+ // A NULL Depex means treat the driver like an UEFI 2.0 thing.
//
Status = CoreAllEfiServicesAvailable ();
if (EFI_ERROR (Status)) {
diff --git a/MdeModulePkg/Core/Dxe/DxeMain.h b/MdeModulePkg/Core/Dxe/DxeMain.h
index b4da26a63d..16b7d8c10c 100644
--- a/MdeModulePkg/Core/Dxe/DxeMain.h
+++ b/MdeModulePkg/Core/Dxe/DxeMain.h
@@ -595,7 +595,7 @@ CoreExitBootServices (
Routine Description:
- EFI 1.0 API to terminate Boot Services
+ UEFI 2.0 API to terminate Boot Services
Arguments:
diff --git a/MdeModulePkg/Core/Dxe/Event/event.c b/MdeModulePkg/Core/Dxe/Event/event.c
index b3ba71de81..c4d6eeb553 100644
--- a/MdeModulePkg/Core/Dxe/Event/event.c
+++ b/MdeModulePkg/Core/Dxe/Event/event.c
@@ -330,7 +330,7 @@ Returns:
Function = NotifyFunction;
//
- // Convert EFI 1.10 Events to thier UEFI 2.0 CreateEventEx mapping
+ // Convert EFI 1.10 Events to their UEFI 2.0 CreateEventEx mapping
//
if (Type == EVT_SIGNAL_EXIT_BOOT_SERVICES) {
GuidPtr = &gEfiEventExitBootServicesGuid;
diff --git a/MdeModulePkg/Include/Protocol/LoadPe32Image.h b/MdeModulePkg/Include/Protocol/LoadPe32Image.h
index 1ea29896b8..155604d5df 100644
--- a/MdeModulePkg/Include/Protocol/LoadPe32Image.h
+++ b/MdeModulePkg/Include/Protocol/LoadPe32Image.h
@@ -13,13 +13,13 @@ Module Name:
LoadPe32Image.h
Abstract:
- Load File protocol as defined in the EFI 1.0 specification.
+ Load File protocol.
Load file protocol exists to supports the addition of new boot devices,
and to support booting from devices that do not map well to file system.
Network boot is done via a LoadFile protocol.
- EFI 1.0 can boot from any device that produces a LoadFile protocol.
+ UEFI 2.0 can boot from any device that produces a LoadFile protocol.
--*/
diff --git a/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsole.c b/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsole.c
index 00bb438bbd..ee96eabdd6 100644
--- a/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsole.c
+++ b/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsole.c
@@ -1,7 +1,7 @@
/**@file
This is the main routine for initializing the Graphics Console support routines.
Remaining Tasks
- Add all standard Glyphs from EFI 1.02 Specification
+ Add all standard Glyphs from UEFI 2.0 Specification
Implement optimal automatic Mode creation algorithm
Solve palette issues for mixed graphics and text
When does this protocol reset the palette?
diff --git a/MdeModulePkg/Universal/Console/TerminalDxe/TerminalConIn.c b/MdeModulePkg/Universal/Console/TerminalDxe/TerminalConIn.c
index 4b3eb37023..a4ad034989 100644
--- a/MdeModulePkg/Universal/Console/TerminalDxe/TerminalConIn.c
+++ b/MdeModulePkg/Universal/Console/TerminalDxe/TerminalConIn.c
@@ -1160,7 +1160,7 @@ Symbols used in table below
^ = CTRL
+=========+======+===========+==========+==========+
-| | EFI | EFI 1.10 | | |
+| | EFI | UEFI 2.0 | | |
| | Scan | | VT100+ | |
| KEY | Code | PC ANSI | VTUTF8 | VT100 |
+=========+======+===========+==========+==========+
diff --git a/MdeModulePkg/Universal/DebugPortDxe/DebugPort.c b/MdeModulePkg/Universal/DebugPortDxe/DebugPort.c
index 86e0b851ed..e3e47302a3 100644
--- a/MdeModulePkg/Universal/DebugPortDxe/DebugPort.c
+++ b/MdeModulePkg/Universal/DebugPortDxe/DebugPort.c
@@ -500,7 +500,7 @@ Routine Description:
EFI_UNSUPPORTED
Arguments:
- Per EFI 1.10 driver model
+ Per UEFI 2.0 driver model
Returns:
EFI_UNSUPPORTED
diff --git a/MdeModulePkg/Universal/Disk/PartitionDxe/Gpt.c b/MdeModulePkg/Universal/Disk/PartitionDxe/Gpt.c
index 00f5ec06e0..7dcb9b45b2 100644
--- a/MdeModulePkg/Universal/Disk/PartitionDxe/Gpt.c
+++ b/MdeModulePkg/Universal/Disk/PartitionDxe/Gpt.c
@@ -1,5 +1,5 @@
/** @file
- Decode a hard disk partitioned with the GPT scheme in the EFI 1.0
+ Decode a hard disk partitioned with the GPT scheme in the UEFI 2.0
specification.
Copyright (c) 2006 - 2007, Intel Corporation