diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-04-22 06:12:08 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-04-22 06:12:08 +0000 |
commit | 01aef47bbe11b3961da5136b064d947540a38060 (patch) | |
tree | 7955cd56359ba1a460f1bb2c7f856486d6228897 /MdePkg/Include/Protocol | |
parent | 7459094d5f6904a0c8445d97519f4a99b654ef43 (diff) | |
download | edk2-platforms-01aef47bbe11b3961da5136b064d947540a38060.tar.xz |
Fix missing include header file and fix typo in comment.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5110 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Protocol')
-rw-r--r-- | MdePkg/Include/Protocol/ComponentName.h | 2 | ||||
-rw-r--r-- | MdePkg/Include/Protocol/ComponentName2.h | 2 | ||||
-rw-r--r-- | MdePkg/Include/Protocol/DriverBinding.h | 1 | ||||
-rw-r--r-- | MdePkg/Include/Protocol/DriverConfiguration.h | 1 | ||||
-rw-r--r-- | MdePkg/Include/Protocol/DriverConfiguration2.h | 2 | ||||
-rw-r--r-- | MdePkg/Include/Protocol/DriverDiagnostics.h | 2 | ||||
-rw-r--r-- | MdePkg/Include/Protocol/PciRootBridgeIo.h | 2 |
7 files changed, 12 insertions, 0 deletions
diff --git a/MdePkg/Include/Protocol/ComponentName.h b/MdePkg/Include/Protocol/ComponentName.h index 79a714ae6e..34dd5bd9fb 100644 --- a/MdePkg/Include/Protocol/ComponentName.h +++ b/MdePkg/Include/Protocol/ComponentName.h @@ -15,6 +15,8 @@ #ifndef __EFI_COMPONENT_NAME_H__
#define __EFI_COMPONENT_NAME_H__
+#include <PiDxe.h>
+
//
// Global ID for the Component Name Protocol
//
diff --git a/MdePkg/Include/Protocol/ComponentName2.h b/MdePkg/Include/Protocol/ComponentName2.h index 2a907f52d1..d9fc6e18e3 100644 --- a/MdePkg/Include/Protocol/ComponentName2.h +++ b/MdePkg/Include/Protocol/ComponentName2.h @@ -15,6 +15,8 @@ #ifndef __EFI_COMPONENT_NAME2_H__
#define __EFI_COMPONENT_NAME2_H__
+#include <PiDxe.h>
+
//
// Global ID for the Component Name Protocol
//
diff --git a/MdePkg/Include/Protocol/DriverBinding.h b/MdePkg/Include/Protocol/DriverBinding.h index 96b0b1bdef..9499e11f3f 100644 --- a/MdePkg/Include/Protocol/DriverBinding.h +++ b/MdePkg/Include/Protocol/DriverBinding.h @@ -15,6 +15,7 @@ #ifndef __EFI_DRIVER_BINDING_H__
#define __EFI_DRIVER_BINDING_H__
+#include <PiDxe.h>
#include <Protocol/DevicePath.h>
//
// Global ID for the ControllerHandle Driver Protocol
diff --git a/MdePkg/Include/Protocol/DriverConfiguration.h b/MdePkg/Include/Protocol/DriverConfiguration.h index 7f10318f9d..c9d025a9a7 100644 --- a/MdePkg/Include/Protocol/DriverConfiguration.h +++ b/MdePkg/Include/Protocol/DriverConfiguration.h @@ -15,6 +15,7 @@ #ifndef __EFI_DRIVER_CONFIGURATION_H__
#define __EFI_DRIVER_CONFIGURATION_H__
+#include <PiDxe.h>
#include <Protocol/DriverConfiguration2.h>
//
diff --git a/MdePkg/Include/Protocol/DriverConfiguration2.h b/MdePkg/Include/Protocol/DriverConfiguration2.h index c1011ba86b..e4417e1d95 100644 --- a/MdePkg/Include/Protocol/DriverConfiguration2.h +++ b/MdePkg/Include/Protocol/DriverConfiguration2.h @@ -15,6 +15,8 @@ #ifndef __EFI_DRIVER_CONFIGURATION2_H__
#define __EFI_DRIVER_CONFIGURATION2_H__
+#include <PiDxe.h>
+
//
// Global ID for the Driver Configuration Protocol defined in UEFI 2.0
//
diff --git a/MdePkg/Include/Protocol/DriverDiagnostics.h b/MdePkg/Include/Protocol/DriverDiagnostics.h index d04bf4917a..13670ae93e 100644 --- a/MdePkg/Include/Protocol/DriverDiagnostics.h +++ b/MdePkg/Include/Protocol/DriverDiagnostics.h @@ -15,6 +15,8 @@ #ifndef __EFI_DRIVER_DIAGNOSTICS_H__
#define __EFI_DRIVER_DIAGNOSTICS_H__
+#include <PiDxe.h>
+
//
// Global ID for the Driver Diagnostics Protocol as defined in UEFI 2.0.
//
diff --git a/MdePkg/Include/Protocol/PciRootBridgeIo.h b/MdePkg/Include/Protocol/PciRootBridgeIo.h index 8b39f661b3..c55fb15922 100644 --- a/MdePkg/Include/Protocol/PciRootBridgeIo.h +++ b/MdePkg/Include/Protocol/PciRootBridgeIo.h @@ -19,6 +19,8 @@ #ifndef __PCI_ROOT_BRIDGE_IO_H__
#define __PCI_ROOT_BRIDGE_IO_H__
+#include <PiDxe.h>
+
#define EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_GUID \
{ \
0x2f707ebb, 0x4a1a, 0x11d4, {0x9a, 0x38, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d } \
|