diff options
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 fea140946c2c..03fa9dc1cf0e 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) { |