diff options
author | Robert Moore <Robert.Moore@intel.com> | 2010-01-19 13:39:26 -0800 |
---|---|---|
committer | Robert Moore <Robert.Moore@intel.com> | 2010-01-19 13:39:26 -0800 |
commit | bce1fbe326516c32688a30a62d1e7a0335bd83ff (patch) | |
tree | 64debf0be1cc6318a84ce0ca0dd0371696db4215 /source/compiler/aslresource.c | |
parent | 2cd7f64bf8097ea8e864dafc01c1439d37741afa (diff) | |
download | acpica-bce1fbe326516c32688a30a62d1e7a0335bd83ff.tar.gz |
Remove obsolete ACPI_INTEGER (acpi_integer) type.
This type was introduced as the code was migrated from ACPI 1.0 (with 32-bit
AML integers) to ACPI 2.0 (with 64-bit integers). It is now obsolete and
this change removes it from the ACPICA code base, replaced by UINT64.
The original typedef has been retained for now for compatibility with
existing device driver code.
Diffstat (limited to 'source/compiler/aslresource.c')
-rw-r--r-- | source/compiler/aslresource.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/compiler/aslresource.c b/source/compiler/aslresource.c index 3b4c5738c..421fde3a3 100644 --- a/source/compiler/aslresource.c +++ b/source/compiler/aslresource.c @@ -184,7 +184,7 @@ RsCreateBitField ( { Op->Asl.ExternalName = Name; - Op->Asl.Value.Integer = ((ACPI_INTEGER) ByteOffset * 8) + BitOffset; + Op->Asl.Value.Integer = ((UINT64) ByteOffset * 8) + BitOffset; Op->Asl.CompileFlags |= (NODE_IS_RESOURCE_FIELD | NODE_IS_BIT_OFFSET); } |