From d30fc092303e650c62aa2d38dca0e45b297018d6 Mon Sep 17 00:00:00 2001 From: aystarik Date: Wed, 29 Jun 2005 16:19:34 +0000 Subject: [PATCH] More GPE info date 2003.02.27.23.12.00; author rmoore1; state Exp; --- source/components/debugger/dbdisply.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/source/components/debugger/dbdisply.c b/source/components/debugger/dbdisply.c index f93a1a57f..9b55a0b5c 100644 --- a/source/components/debugger/dbdisply.c +++ b/source/components/debugger/dbdisply.c @@ -1,7 +1,7 @@ /******************************************************************************* * * Module Name: dbdisply - debug display commands - * $Revision: 1.87 $ + * $Revision: 1.88 $ * ******************************************************************************/ @@ -1039,10 +1039,12 @@ AcpiDbDisplayGpes (void) GpeBlock = AcpiGbl_GpeBlockListHead; while (GpeBlock) { - AcpiOsPrintf ("Block %d\n", i); - AcpiOsPrintf (" Registers: %d\n", GpeBlock->RegisterCount); - AcpiOsPrintf (" GPE range: %d to %d\n", GpeBlock->BlockBaseNumber, - GpeBlock->BlockBaseNumber + (GpeBlock->RegisterCount * 8)); + AcpiOsPrintf ("Block %d - %p\n", i, GpeBlock); + AcpiOsPrintf (" Registers: %d\n", GpeBlock->RegisterCount); + AcpiOsPrintf (" GPE range: %d to %d\n", GpeBlock->BlockBaseNumber, + GpeBlock->BlockBaseNumber + (GpeBlock->RegisterCount * 8) -1); + AcpiOsPrintf (" RegisterInfo: %p\n", GpeBlock->RegisterInfo); + AcpiOsPrintf (" EventInfo: %p\n", GpeBlock->EventInfo); i++; GpeBlock = GpeBlock->Next;