mirror of
https://github.com/acpica/acpica/
synced 2025-02-25 09:54:42 +03:00
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:
parent
bce1fbe326
commit
594479d5c6
@ -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;
|
||||
|
||||
|
||||
|
@ -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 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user