diff options
author | Bob Moore <robert.moore@intel.com> | 2009-05-21 10:06:19 +0800 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-05-27 00:32:24 -0400 |
commit | a76b7727364ebb77b25983427623757d2c99bbc3 (patch) | |
tree | 7e3e6e6f741d30e9995304854000b35799fd7d8e /drivers/acpi/acpica | |
parent | 315c728887f198d12eb6ec7ef9d88483018c11cb (diff) | |
download | blackbird-op-linux-a76b7727364ebb77b25983427623757d2c99bbc3.tar.gz blackbird-op-linux-a76b7727364ebb77b25983427623757d2c99bbc3.zip |
ACPICA: Fix DebugObject output for DdbHandle objects
Was putting several extra spaces on the next line.
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')
-rw-r--r-- | drivers/acpi/acpica/exstore.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/acpi/acpica/exstore.c b/drivers/acpi/acpica/exstore.c index 90d606196c99..6efd07a4f779 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; |