Disassembler: Remove obsolete "Integer64" field in parse object.

This field is no longer needed. The "Integer" field is 64 bit and
is sufficient.
This commit is contained in:
Robert Moore 2010-01-19 14:17:17 -08:00
parent bce1fbe326
commit 594479d5c6
2 changed files with 2 additions and 3 deletions

View File

@ -473,8 +473,8 @@ AcpiDmDisassembleOneOp (
case AML_QWORD_OP:
AcpiOsPrintf ("0x%8.8X%8.8X", Op->Common.Value.Integer64.Hi,
Op->Common.Value.Integer64.Lo);
AcpiOsPrintf ("0x%8.8X%8.8X",
ACPI_FORMAT_UINT64 (Op->Common.Value.Integer));
break;

View File

@ -854,7 +854,6 @@ typedef struct acpi_opcode_info
typedef union acpi_parse_value
{
UINT64 Integer; /* Integer constant (Up to 64 bits) */
UINT64_STRUCT Integer64; /* Structure overlay for 2 32-bit Dwords */
UINT32 Size; /* bytelist or field size */
char *String; /* NULL terminated string */
UINT8 *Buffer; /* buffer or string */