From ed0a1e9ae952ac564b0301b99c567088038b4fcf Mon Sep 17 00:00:00 2001 From: aystarik Date: Wed, 29 Jun 2005 19:00:10 +0000 Subject: [PATCH] Added a debug statement date 2004.11.18.22.32.00; author rmoore1; state Exp; --- source/components/tables/tbxfroot.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/source/components/tables/tbxfroot.c b/source/components/tables/tbxfroot.c index a80264ea7..c0808a209 100644 --- a/source/components/tables/tbxfroot.c +++ b/source/components/tables/tbxfroot.c @@ -1,7 +1,7 @@ /****************************************************************************** * * Module Name: tbxfroot - Find the root ACPI table (RSDT) - * $Revision: 1.77 $ + * $Revision: 1.78 $ * *****************************************************************************/ @@ -531,14 +531,19 @@ AcpiTbScanMemoryForRsdp ( /* Checksum valid, we have found a valid RSDP */ ACPI_DEBUG_PRINT ((ACPI_DB_INFO, - "RSDP located at physical address %p\n",MemRover)); + "RSDP located at physical address %p\n", MemRover)); return_PTR (MemRover); } + + ACPI_DEBUG_PRINT ((ACPI_DB_INFO, + "Found an RSDP at physical address %p, but it has a bad checksum\n", + MemRover)); } /* Searched entire block, no RSDP was found */ - ACPI_DEBUG_PRINT ((ACPI_DB_INFO,"Searched entire block, no RSDP was found.\n")); + ACPI_DEBUG_PRINT ((ACPI_DB_INFO, + "Searched entire block, no valid RSDP was found.\n")); return_PTR (NULL); }