diff options
| author | Tony Luck <tony.luck@intel.com> | 2005-07-13 12:15:43 -0700 | 
|---|---|---|
| committer | Tony Luck <tony.luck@intel.com> | 2005-07-13 12:15:43 -0700 | 
| commit | 99ad25a313bda566a346b46a6015afa65bc0a02b (patch) | |
| tree | b9443fed1ab74f320c4ee0791864ee96d7c069df /drivers/acpi/namespace/nsobject.c | |
| parent | f62c4a96f74d6c6dd56d1742697e94a5c2085e87 (diff) | |
| parent | 9a556e89081b0c1c2f83cee915363b15a68a6f2d (diff) | |
Auto merge with /home/aegl/GIT/linus
Diffstat (limited to 'drivers/acpi/namespace/nsobject.c')
| -rw-r--r-- | drivers/acpi/namespace/nsobject.c | 14 | 
1 files changed, 9 insertions, 5 deletions
diff --git a/drivers/acpi/namespace/nsobject.c b/drivers/acpi/namespace/nsobject.c index 4e41e66db61..27258c1ca4f 100644 --- a/drivers/acpi/namespace/nsobject.c +++ b/drivers/acpi/namespace/nsobject.c @@ -60,6 +60,8 @@   *              Type                - Type of object, or ACPI_TYPE_ANY if not   *                                    known   * + * RETURN:      Status + *   * DESCRIPTION: Record the given object as the value associated with the   *              name whose acpi_handle is passed.  If Object is NULL   *              and Type is ACPI_TYPE_ANY, set the name as having no value. @@ -97,7 +99,8 @@ acpi_ns_attach_object (  	if (!object && (ACPI_TYPE_ANY != type)) {  		/* Null object */ -		ACPI_REPORT_ERROR (("ns_attach_object: Null object, but type not ACPI_TYPE_ANY\n")); +		ACPI_REPORT_ERROR (( +			"ns_attach_object: Null object, but type not ACPI_TYPE_ANY\n"));  		return_ACPI_STATUS (AE_BAD_PARAMETER);  	} @@ -112,7 +115,8 @@ acpi_ns_attach_object (  	/* Check if this object is already attached */  	if (node->object == object) { -		ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Obj %p already installed in name_obj %p\n", +		ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, +			"Obj %p already installed in name_obj %p\n",  			object, node));  		return_ACPI_STATUS (AE_OK); @@ -192,7 +196,7 @@ acpi_ns_attach_object (   *   * FUNCTION:    acpi_ns_detach_object   * - * PARAMETERS:  Node           - An node whose object will be detached + * PARAMETERS:  Node           - A Namespace node whose object will be detached   *   * RETURN:      None.   * @@ -248,7 +252,7 @@ acpi_ns_detach_object (   *   * FUNCTION:    acpi_ns_get_attached_object   * - * PARAMETERS:  Node             - Parent Node to be examined + * PARAMETERS:  Node             - Namespace node   *   * RETURN:      Current value of the object field from the Node whose   *              handle is passed @@ -284,7 +288,7 @@ acpi_ns_get_attached_object (   *   * FUNCTION:    acpi_ns_get_secondary_object   * - * PARAMETERS:  Node             - Parent Node to be examined + * PARAMETERS:  Node             - Namespace node   *   * RETURN:      Current value of the object field from the Node whose   *              handle is passed.  | 
