diff options
author | jkim <jkim@FreeBSD.org> | 2010-01-21 20:56:18 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2010-01-21 20:56:18 +0000 |
commit | fc2ff8b4ae15e9952d34803553e9917c8091d72a (patch) | |
tree | 4b6b1812ecf638d285ab3b645feee1416d0f343b /dispatcher/dsfield.c | |
parent | 5eb20ec0efedaa5c449001fed0391ff67b8af8bb (diff) | |
download | FreeBSD-src-fc2ff8b4ae15e9952d34803553e9917c8091d72a.zip FreeBSD-src-fc2ff8b4ae15e9952d34803553e9917c8091d72a.tar.gz |
Import ACPICA 20100121.
Diffstat (limited to 'dispatcher/dsfield.c')
-rw-r--r-- | dispatcher/dsfield.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dispatcher/dsfield.c b/dispatcher/dsfield.c index 12d55f4..8453c88 100644 --- a/dispatcher/dsfield.c +++ b/dispatcher/dsfield.c @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp. * All rights reserved. * * 2. License @@ -314,7 +314,7 @@ AcpiDsGetFieldNames ( ACPI_PARSE_OBJECT *Arg) { ACPI_STATUS Status; - ACPI_INTEGER Position; + UINT64 Position; ACPI_FUNCTION_TRACE_PTR (DsGetFieldNames, Info); @@ -338,8 +338,8 @@ AcpiDsGetFieldNames ( { case AML_INT_RESERVEDFIELD_OP: - Position = (ACPI_INTEGER) Info->FieldBitPosition - + (ACPI_INTEGER) Arg->Common.Value.Size; + Position = (UINT64) Info->FieldBitPosition + + (UINT64) Arg->Common.Value.Size; if (Position > ACPI_UINT32_MAX) { @@ -406,8 +406,8 @@ AcpiDsGetFieldNames ( /* Keep track of bit position for the next field */ - Position = (ACPI_INTEGER) Info->FieldBitPosition - + (ACPI_INTEGER) Arg->Common.Value.Size; + Position = (UINT64) Info->FieldBitPosition + + (UINT64) Arg->Common.Value.Size; if (Position > ACPI_UINT32_MAX) { |