Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 298001
b: refs/heads/master
c: 4acb688
h: refs/heads/master
i:
  297999: 0808bac
v: v3
  • Loading branch information
Bob Moore authored and Len Brown committed Mar 22, 2012
1 parent 47e12f3 commit 4fa6705
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a1acd22f7c6032e8394df7d8adee1a7cdad28b74
refs/heads/master: 4acb6884b5568f19bd47173cba8bc1f2289d6baa
15 changes: 14 additions & 1 deletion trunk/drivers/acpi/acpica/nsdump.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,20 @@ acpi_ns_dump_one_object(acpi_handle obj_handle,

if (!obj_desc) {

/* No attached object, we are done */
/* No attached object. Some types should always have an object */

switch (type) {
case ACPI_TYPE_INTEGER:
case ACPI_TYPE_PACKAGE:
case ACPI_TYPE_BUFFER:
case ACPI_TYPE_STRING:
case ACPI_TYPE_METHOD:
acpi_os_printf("<No attached object>");
break;

default:
break;
}

acpi_os_printf("\n");
return (AE_OK);
Expand Down

0 comments on commit 4fa6705

Please sign in to comment.