From: Bob Moore Date: Thu, 21 May 2009 02:06:19 +0000 (+0800) Subject: ACPICA: Fix DebugObject output for DdbHandle objects X-Git-Tag: upstream/snapshot3+hdmi~18597^2~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a76b7727364ebb77b25983427623757d2c99bbc3;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git ACPICA: Fix DebugObject output for DdbHandle objects Was putting several extra spaces on the next line. Signed-off-by: Bob Moore Signed-off-by: Lin Ming Signed-off-by: Len Brown --- diff --git a/drivers/acpi/acpica/exstore.c b/drivers/acpi/acpica/exstore.c index 90d6061..6efd07a 100644 --- a/drivers/acpi/acpica/exstore.c +++ b/drivers/acpi/acpica/exstore.c @@ -193,10 +193,12 @@ acpi_ex_do_debug_object(union acpi_operand_object *source_desc, case ACPI_REFCLASS_TABLE: + /* Case for ddb_handle */ + ACPI_DEBUG_PRINT_RAW((ACPI_DB_DEBUG_OBJECT, "Table Index 0x%X\n", source_desc->reference.value)); - break; + return; default: break;