Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cf48958e authored by Bob Moore's avatar Bob Moore Committed by Len Brown
Browse files

ACPICA: Fix some comment fields



No functional change. Fixes some typos and linux divergences.

Signed-off-by: default avatarBob Moore <robert.moore@intel.com>
Signed-off-by: default avatarLin Ming <ming.m.lin@intel.com>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 3b3ea775
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -283,8 +283,8 @@
#define ACPI_INSERT_BITS(target, mask, source)          target = ((target & (~(mask))) | (source & mask))

/*
 * A struct acpi_namespace_node can appear in some contexts
 * where a pointer to a union acpi_operand_object can also
 * An object of type struct acpi_namespace_node can appear in some contexts
 * where a pointer to an object of type union acpi_operand_object can also
 * appear. This macro is used to distinguish them.
 *
 * The "Descriptor" field is the first field in both structures.
+2 −2
Original line number Diff line number Diff line
@@ -113,8 +113,8 @@ struct acpi_object_integer {
};

/*
 * Note: The String and Buffer object must be identical through the Pointer
 * and length elements.  There is code that depends on this.
 * Note: The String and Buffer object must be identical through the
 * pointer and length elements. There is code that depends on this.
 *
 * Fields common to both Strings and Buffers
 */
+2 −2
Original line number Diff line number Diff line
@@ -395,8 +395,8 @@ acpi_ex_prep_common_field_object(union acpi_operand_object *obj_desc,
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Construct a union acpi_operand_object of type def_field and
 *              connect it to the parent Node.
 * DESCRIPTION: Construct an object of type union acpi_operand_object with a
 *              subtype of def_field and connect it to the parent Node.
 *
 ******************************************************************************/

+1 −1
Original line number Diff line number Diff line
@@ -147,7 +147,7 @@ acpi_ex_resolve_object_to_value(union acpi_operand_object **stack_ptr,

	stack_desc = *stack_ptr;

	/* This is a union acpi_operand_object    */
	/* This is an object of type union acpi_operand_object */

	switch (stack_desc->common.type) {
	case ACPI_TYPE_LOCAL_REFERENCE:
+2 −2
Original line number Diff line number Diff line
@@ -63,7 +63,7 @@ acpi_ex_store_object_to_index(union acpi_operand_object *val_desc,
 *
 * PARAMETERS:  *source_desc        - Value to be stored
 *              *dest_desc          - Where to store it. Must be an NS node
 *                                    or a union acpi_operand_object of type
 *                                    or union acpi_operand_object of type
 *                                    Reference;
 *              walk_state          - Current walk state
 *
Loading