summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Protocol/DriverConfiguration.h
diff options
context:
space:
mode:
authoryshang1 <yshang1@6f19259b-4bc3-4df7-8a09-765794883524>2007-06-27 03:29:27 +0000
committeryshang1 <yshang1@6f19259b-4bc3-4df7-8a09-765794883524>2007-06-27 03:29:27 +0000
commitf22a5f43232909b6d65f59265b22e4a22940d40c (patch)
tree66fa088b51a55b70772280ae1d713e641b2c819d /MdePkg/Include/Protocol/DriverConfiguration.h
parent3747c59bbfddaa7f5098e10f0841a96af6b70c1b (diff)
downloadedk2-platforms-f22a5f43232909b6d65f59265b22e4a22940d40c.tar.xz
Split the DriverConfiguration.h into DriverConfiguration2 and DriverConfiguration.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2763 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Protocol/DriverConfiguration.h')
-rw-r--r--MdePkg/Include/Protocol/DriverConfiguration.h25
1 files changed, 3 insertions, 22 deletions
diff --git a/MdePkg/Include/Protocol/DriverConfiguration.h b/MdePkg/Include/Protocol/DriverConfiguration.h
index f4f0c7aeb2..2ada05dcd3 100644
--- a/MdePkg/Include/Protocol/DriverConfiguration.h
+++ b/MdePkg/Include/Protocol/DriverConfiguration.h
@@ -17,6 +17,8 @@
#ifndef __EFI_DRIVER_CONFIGURATION_H__
#define __EFI_DRIVER_CONFIGURATION_H__
+#include <Protocol/DriverConfiguration2.h>
+
//
// Global ID for the Driver Configuration Protocol defined in EFI 1.10
//
@@ -25,29 +27,9 @@
0x107a772b, 0xd5e1, 0x11d4, {0x9a, 0x46, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d } \
}
-//
-// Global ID for the Driver Configuration Protocol defined in UEFI 2.0
-//
-#define UEFI_DRIVER_CONFIGURATION_PROTOCOL_GUID \
- { \
- 0xbfd7dc1d, 0x24f1, 0x40d9, {0x82, 0xe7, 0x2e, 0x09, 0xbb, 0x6b, 0x4e, 0xbe } \
- }
-
+
typedef struct _EFI_DRIVER_CONFIGURATION_PROTOCOL EFI_DRIVER_CONFIGURATION_PROTOCOL;
-typedef enum {
- EfiDriverConfigurationActionNone = 0,
- EfiDriverConfigurationActionStopController = 1,
- EfiDriverConfigurationActionRestartController = 2,
- EfiDriverConfigurationActionRestartPlatform = 3,
- EfiDriverConfigurationActionMaximum
-} EFI_DRIVER_CONFIGURATION_ACTION_REQUIRED;
-
-#define EFI_DRIVER_CONFIGURATION_SAFE_DEFAULTS 0x00000000
-#define EFI_DRIVER_CONFIGURATION_MANUFACTURING_DEFAULTS 0x00000001
-#define EFI_DRIVER_CONFIGURATION_CUSTOM_DEFAULTS 0x00000002
-#define EFI_DRIVER_CONFIGURATION_PERORMANCE_DEFAULTS 0x00000003
-
/**
Allows the user to set controller specific options for a controller that a
driver is currently managing.
@@ -198,6 +180,5 @@ struct _EFI_DRIVER_CONFIGURATION_PROTOCOL {
**/
extern EFI_GUID gEfiDriverConfigurationProtocolGuid;
-extern EFI_GUID gUefiDriverConfigurationProtocolGuid;
#endif