diff options
author | rsun3 <rsun3@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-03-17 02:06:04 +0000 |
---|---|---|
committer | rsun3 <rsun3@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-03-17 02:06:04 +0000 |
commit | 673c1498017ab581142fde7b846bc11ec630e158 (patch) | |
tree | 1b07509b801bf52f709749f107407de50b6fac6a /EdkCompatibilityPkg/Compatibility/Include | |
parent | 49fd8a3553770c6e47af266245b62a143b362d85 (diff) | |
download | edk2-platforms-673c1498017ab581142fde7b846bc11ec630e158.tar.xz |
Remove the implementation limitation in the SmmBaseHelper driver that it assumes the Framework SMM driver to be loaded has a copy in memory.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10258 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkCompatibilityPkg/Compatibility/Include')
-rw-r--r-- | EdkCompatibilityPkg/Compatibility/Include/Guid/SmmBaseThunkCommunication.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/EdkCompatibilityPkg/Compatibility/Include/Guid/SmmBaseThunkCommunication.h b/EdkCompatibilityPkg/Compatibility/Include/Guid/SmmBaseThunkCommunication.h index ae369165c9..4a2a32eb05 100644 --- a/EdkCompatibilityPkg/Compatibility/Include/Guid/SmmBaseThunkCommunication.h +++ b/EdkCompatibilityPkg/Compatibility/Include/Guid/SmmBaseThunkCommunication.h @@ -74,9 +74,10 @@ typedef enum { } SMMBASE_FUNCTION;
typedef struct {
- SMMBASE_FUNCTION Function;
- EFI_STATUS Status;
- SMMBASE_FUNCTION_ARGS Args;
+ SMMBASE_FUNCTION Function;
+ EFI_STATUS Status;
+ SMMBASE_FUNCTION_ARGS Args;
+ EFI_HANDLE SmmBaseImageHandle;
} SMMBASE_FUNCTION_DATA;
#pragma pack(1)
|