mirror of https://github.com/acidanthera/audk.git
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
This commit is contained in:
parent
bf099261d9
commit
ef3f88727a
|
@ -6,7 +6,7 @@
|
||||||
but not in the same format. These so-called pseudo-registers provide this information in a standard
|
but not in the same format. These so-called pseudo-registers provide this information in a standard
|
||||||
format.
|
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
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
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
|
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
|
/// instructions (OUT, OUTS) this is data that was written before the SMI occurred. The
|
||||||
/// width of the data is specified by IoWidth.
|
/// width of the data is specified by IoWidth.
|
||||||
///
|
///
|
||||||
/// Note: inconsistency with PI 1.2 spec here. wait for spec update.
|
UINT64 IoData;
|
||||||
///
|
|
||||||
UINTN IoData;
|
|
||||||
///
|
///
|
||||||
/// The I/O port that was being accessed when the SMI was triggered.
|
/// The I/O port that was being accessed when the SMI was triggered.
|
||||||
///
|
///
|
||||||
|
|
Loading…
Reference in New Issue