summaryrefslogtreecommitdiff
path: root/source/components/events
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2012-12-06 13:26:40 -0800
committerRobert Moore <Robert.Moore@intel.com>2012-12-06 13:26:40 -0800
commitd0cdffd3e5915700f06ef66a3b657f0c47c15d34 (patch)
tree7a36887b0d34d1b9a006f977c3115b7b2fa37e46 /source/components/events
parentc042f90cd6571aefaa182dab697144ead771ba2c (diff)
downloadacpica-d0cdffd3e5915700f06ef66a3b657f0c47c15d34.tar.gz
Update ACPICA initialization messages.
Clarify messages, indent if appropriate. Change a couple appropriate messages to ACPI_INFO so they will appear even if debug output is disabled.
Diffstat (limited to 'source/components/events')
-rw-r--r--source/components/events/evgpeblk.c10
-rw-r--r--source/components/events/evgpeinit.c3
2 files changed, 9 insertions, 4 deletions
diff --git a/source/components/events/evgpeblk.c b/source/components/events/evgpeblk.c
index 3b23ee0fd..22bccb8ef 100644
--- a/source/components/events/evgpeblk.c
+++ b/source/components/events/evgpeblk.c
@@ -515,8 +515,8 @@ AcpiEvCreateGpeBlock (
(*ReturnGpeBlock) = GpeBlock;
}
- ACPI_DEBUG_PRINT ((ACPI_DB_INIT,
- "GPE %02X to %02X [%4.4s] %u regs on int 0x%X\n",
+ ACPI_DEBUG_PRINT_RAW ((ACPI_DB_INIT,
+ " Initialized GPE %02X to %02X [%4.4s] %u regs on interrupt 0x%X\n",
(UINT32) GpeBlock->BlockBaseNumber,
(UINT32) (GpeBlock->BlockBaseNumber + (GpeBlock->GpeCount - 1)),
GpeDevice->Name.Ascii, GpeBlock->RegisterCount,
@@ -611,8 +611,10 @@ AcpiEvInitializeGpeBlock (
if (GpeEnabledCount)
{
- ACPI_DEBUG_PRINT ((ACPI_DB_INIT,
- "Enabled %u GPEs in this block\n", GpeEnabledCount));
+ ACPI_INFO ((AE_INFO,
+ "Enabled %u GPEs in block %02X to %02X", GpeEnabledCount,
+ (UINT32) GpeBlock->BlockBaseNumber,
+ (UINT32) (GpeBlock->BlockBaseNumber + (GpeBlock->GpeCount - 1))));
}
GpeBlock->Initialized = TRUE;
diff --git a/source/components/events/evgpeinit.c b/source/components/events/evgpeinit.c
index fe7ca2f26..0682aa559 100644
--- a/source/components/events/evgpeinit.c
+++ b/source/components/events/evgpeinit.c
@@ -166,6 +166,9 @@ AcpiEvGpeInitialize (
ACPI_FUNCTION_TRACE (EvGpeInitialize);
+ ACPI_DEBUG_PRINT_RAW ((ACPI_DB_INIT,
+ "Initializing General Purpose Events (GPEs):\n"));
+
Status = AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE);
if (ACPI_FAILURE (Status))
{