diff options
author | Bob Moore <robert.moore@intel.com> | 2009-03-05 21:05:18 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-03-27 12:11:02 -0400 |
commit | d4913dc6d0c680aa106d1d80b5ad2a9325367afd (patch) | |
tree | 4ce6e658b21a2bc69e7c57caa6f7dfa1ff8ec53b /drivers/acpi/acpica/nsdump.c | |
parent | 768aaaf196e8a40f5cfc792d9d365795cc52ed13 (diff) |
ACPICA: Formatting update - no functional changes
Split long lines, update comments.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/acpica/nsdump.c')
-rw-r--r-- | drivers/acpi/acpica/nsdump.c | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/drivers/acpi/acpica/nsdump.c b/drivers/acpi/acpica/nsdump.c index 7bfa6c1286f1..2bad613db73a 100644 --- a/drivers/acpi/acpica/nsdump.c +++ b/drivers/acpi/acpica/nsdump.c | |||
@@ -220,9 +220,8 @@ acpi_ns_dump_one_object(acpi_handle obj_handle, | |||
220 | acpi_os_printf("%4.4s", acpi_ut_get_node_name(this_node)); | 220 | acpi_os_printf("%4.4s", acpi_ut_get_node_name(this_node)); |
221 | } | 221 | } |
222 | 222 | ||
223 | /* | 223 | /* Now we can print out the pertinent information */ |
224 | * Now we can print out the pertinent information | 224 | |
225 | */ | ||
226 | acpi_os_printf(" %-12s %p %2.2X ", | 225 | acpi_os_printf(" %-12s %p %2.2X ", |
227 | acpi_ut_get_type_name(type), this_node, | 226 | acpi_ut_get_type_name(type), this_node, |
228 | this_node->owner_id); | 227 | this_node->owner_id); |
@@ -545,9 +544,8 @@ acpi_ns_dump_one_object(acpi_handle obj_handle, | |||
545 | goto cleanup; | 544 | goto cleanup; |
546 | } | 545 | } |
547 | 546 | ||
548 | /* | 547 | /* Valid object, get the pointer to next level, if any */ |
549 | * Valid object, get the pointer to next level, if any | 548 | |
550 | */ | ||
551 | switch (obj_type) { | 549 | switch (obj_type) { |
552 | case ACPI_TYPE_BUFFER: | 550 | case ACPI_TYPE_BUFFER: |
553 | case ACPI_TYPE_STRING: | 551 | case ACPI_TYPE_STRING: |
@@ -608,14 +606,14 @@ acpi_ns_dump_one_object(acpi_handle obj_handle, | |||
608 | * display_type - 0 or ACPI_DISPLAY_SUMMARY | 606 | * display_type - 0 or ACPI_DISPLAY_SUMMARY |
609 | * max_depth - Maximum depth of dump. Use ACPI_UINT32_MAX | 607 | * max_depth - Maximum depth of dump. Use ACPI_UINT32_MAX |
610 | * for an effectively unlimited depth. | 608 | * for an effectively unlimited depth. |
611 | * owner_id - Dump only objects owned by this ID. Use | 609 | * owner_id - Dump only objects owned by this ID. Use |
612 | * ACPI_UINT32_MAX to match all owners. | 610 | * ACPI_UINT32_MAX to match all owners. |
613 | * start_handle - Where in namespace to start/end search | 611 | * start_handle - Where in namespace to start/end search |
614 | * | 612 | * |
615 | * RETURN: None | 613 | * RETURN: None |
616 | * | 614 | * |
617 | * DESCRIPTION: Dump typed objects within the loaded namespace. | 615 | * DESCRIPTION: Dump typed objects within the loaded namespace. Uses |
618 | * Uses acpi_ns_walk_namespace in conjunction with acpi_ns_dump_one_object. | 616 | * acpi_ns_walk_namespace in conjunction with acpi_ns_dump_one_object. |
619 | * | 617 | * |
620 | ******************************************************************************/ | 618 | ******************************************************************************/ |
621 | 619 | ||