diff options
author | rsun3 <rsun3@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-05-17 10:04:08 +0000 |
---|---|---|
committer | rsun3 <rsun3@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-05-17 10:04:08 +0000 |
commit | ef3f88727a63eac873b7b8d4d5e569173855e0ca (patch) | |
tree | 5b5e65d96e08393cdab3c03e7d73ef8da546bc6e /MdePkg/Include | |
parent | bf099261d94f208a78d1bc4d71243ea3d0afd5e1 (diff) | |
download | edk2-ef3f88727a63eac873b7b8d4d5e569173855e0ca.zip edk2-ef3f88727a63eac873b7b8d4d5e569173855e0ca.tar.gz edk2-ef3f88727a63eac873b7b8d4d5e569173855e0ca.tar.bz2 |
Change the type of the IoData field of EFI_SMM_SAVE_STATE_IO_INFO from UINTN to UINT64 to follow the PI spec.
Signed-off-by: rsun3
Reviewed-by: lgao4
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11673 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include')
-rw-r--r-- | MdePkg/Include/Protocol/SmmCpu.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/MdePkg/Include/Protocol/SmmCpu.h b/MdePkg/Include/Protocol/SmmCpu.h index 7fc177e..673a317 100644 --- a/MdePkg/Include/Protocol/SmmCpu.h +++ b/MdePkg/Include/Protocol/SmmCpu.h @@ -6,7 +6,7 @@ but not in the same format. These so-called pseudo-registers provide this information in a standard
format.
- Copyright (c) 2009, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -151,9 +151,7 @@ typedef struct _EFI_SMM_SAVE_STATE_IO_INFO { /// instructions (OUT, OUTS) this is data that was written before the SMI occurred. The
/// width of the data is specified by IoWidth.
///
- /// Note: inconsistency with PI 1.2 spec here. wait for spec update.
- ///
- UINTN IoData;
+ UINT64 IoData;
///
/// The I/O port that was being accessed when the SMI was triggered.
///
|