summaryrefslogtreecommitdiff
path: root/source/include/acmacros.h
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2012-07-11 16:51:47 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2012-07-11 16:51:47 +0000
commit8724452f676e45bfd39cfb47234f7def5551f067 (patch)
treeadad4747b5f7a0166c805c0a7a6bdd4c884aa24b /source/include/acmacros.h
parentafea6800ce201481ac6ebace2b4266b3b1b15d6e (diff)
Notes
Diffstat (limited to 'source/include/acmacros.h')
-rw-r--r--source/include/acmacros.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/include/acmacros.h b/source/include/acmacros.h
index cdb9cb109e068..591bb6bf1a58b 100644
--- a/source/include/acmacros.h
+++ b/source/include/acmacros.h
@@ -274,8 +274,8 @@
#define ACPI_INSERT_BITS(Target, Mask, Source) Target = ((Target & (~(Mask))) | (Source & Mask))
/*
- * An ACPI_NAMESPACE_NODE can appear in some contexts
- * where a pointer to an ACPI_OPERAND_OBJECT can also
+ * An object of type ACPI_NAMESPACE_NODE can appear in some contexts
+ * where a pointer to an object of type ACPI_OPERAND_OBJECT can also
* appear. This macro is used to distinguish them.
*
* The "Descriptor" field is the first field in both structures.