diff options
author | msmith <msmith@FreeBSD.org> | 2001-01-31 09:17:50 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 2001-01-31 09:17:50 +0000 |
commit | d0b0463ce5e8e28f0624e048eae1fbed16350d76 (patch) | |
tree | cc3168c29a9d56f542156ea375617bc4c82248a1 /sys/contrib/dev/acpica/utmisc.c | |
parent | 312d4981dc089e0a17e1a9f2cdf4d7327f25af69 (diff) | |
parent | 7948a3a80426e7bdc0728814e72cf46852c46576 (diff) | |
download | FreeBSD-src-d0b0463ce5e8e28f0624e048eae1fbed16350d76.zip FreeBSD-src-d0b0463ce5e8e28f0624e048eae1fbed16350d76.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r71867,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'sys/contrib/dev/acpica/utmisc.c')
-rw-r--r-- | sys/contrib/dev/acpica/utmisc.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/contrib/dev/acpica/utmisc.c b/sys/contrib/dev/acpica/utmisc.c index 662ec14..2c9c60d 100644 --- a/sys/contrib/dev/acpica/utmisc.c +++ b/sys/contrib/dev/acpica/utmisc.c @@ -1,7 +1,7 @@ /******************************************************************************* * * Module Name: cmutils - common utility procedures - * $Revision: 22 $ + * $Revision: 23 $ * ******************************************************************************/ @@ -9,7 +9,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999, 2000, Intel Corp. + * Some or all of this work - Copyright (c) 1999, 2000, 2001, Intel Corp. * All rights reserved. * * 2. License @@ -814,18 +814,18 @@ AcpiCmResolvePackageReferences ( { if (SubObject->Reference.OpCode == AML_ZERO_OP) { - SubObject->Common.Type = ACPI_TYPE_NUMBER; - SubObject->Number.Value = 0; + SubObject->Common.Type = ACPI_TYPE_INTEGER; + SubObject->Integer.Value = 0; } else if (SubObject->Reference.OpCode == AML_ONE_OP) { - SubObject->Common.Type = ACPI_TYPE_NUMBER; - SubObject->Number.Value = 1; + SubObject->Common.Type = ACPI_TYPE_INTEGER; + SubObject->Integer.Value = 1; } else if (SubObject->Reference.OpCode == AML_ONES_OP) { - SubObject->Common.Type = ACPI_TYPE_NUMBER; - SubObject->Number.Value = ACPI_INTEGER_MAX; + SubObject->Common.Type = ACPI_TYPE_INTEGER; + SubObject->Integer.Value = ACPI_INTEGER_MAX; } } } |