summaryrefslogtreecommitdiff
path: root/source/components/events/evrgnini.c
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2010-01-19 13:39:26 -0800
committerRobert Moore <Robert.Moore@intel.com>2010-01-19 13:39:26 -0800
commitbce1fbe326516c32688a30a62d1e7a0335bd83ff (patch)
tree64debf0be1cc6318a84ce0ca0dd0371696db4215 /source/components/events/evrgnini.c
parent2cd7f64bf8097ea8e864dafc01c1439d37741afa (diff)
downloadacpica-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/components/events/evrgnini.c')
-rw-r--r--source/components/events/evrgnini.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/components/events/evrgnini.c b/source/components/events/evrgnini.c
index 8b1740150..8a6cbfd94 100644
--- a/source/components/events/evrgnini.c
+++ b/source/components/events/evrgnini.c
@@ -260,7 +260,7 @@ AcpiEvPciConfigRegionSetup (
void **RegionContext)
{
ACPI_STATUS Status = AE_OK;
- ACPI_INTEGER PciValue;
+ UINT64 PciValue;
ACPI_PCI_ID *PciId = *RegionContext;
ACPI_OPERAND_OBJECT *HandlerObj;
ACPI_NAMESPACE_NODE *ParentNode;