diff options
author | jkim <jkim@FreeBSD.org> | 2012-07-11 16:51:47 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2012-07-11 16:51:47 +0000 |
commit | dbd90a99cde8c4a942a41f095faa72f479694173 (patch) | |
tree | adad4747b5f7a0166c805c0a7a6bdd4c884aa24b /source/components/utilities/utobject.c | |
parent | bed871bb76b9fc47b3a3595700ef242f22f33ea4 (diff) | |
download | FreeBSD-src-dbd90a99cde8c4a942a41f095faa72f479694173.zip FreeBSD-src-dbd90a99cde8c4a942a41f095faa72f479694173.tar.gz |
Import ACPICA 20120711.
Diffstat (limited to 'source/components/utilities/utobject.c')
-rw-r--r-- | source/components/utilities/utobject.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/components/utilities/utobject.c b/source/components/utilities/utobject.c index fea1409..03fa9dc 100644 --- a/source/components/utilities/utobject.c +++ b/source/components/utilities/utobject.c @@ -366,7 +366,7 @@ AcpiUtCreateStringObject ( * * RETURN: TRUE if object is valid, FALSE otherwise * - * DESCRIPTION: Validate a pointer to be an ACPI_OPERAND_OBJECT + * DESCRIPTION: Validate a pointer to be of type ACPI_OPERAND_OBJECT * ******************************************************************************/ @@ -392,7 +392,7 @@ AcpiUtValidInternalObject ( { case ACPI_DESC_TYPE_OPERAND: - /* The object appears to be a valid ACPI_OPERAND_OBJECT */ + /* The object appears to be a valid ACPI_OPERAND_OBJECT */ return (TRUE); @@ -473,7 +473,7 @@ AcpiUtDeleteObjectDesc ( ACPI_FUNCTION_TRACE_PTR (UtDeleteObjectDesc, Object); - /* Object must be an ACPI_OPERAND_OBJECT */ + /* Object must be of type ACPI_OPERAND_OBJECT */ if (ACPI_GET_DESCRIPTOR_TYPE (Object) != ACPI_DESC_TYPE_OPERAND) { |