From 8de27a6240024dabadd2c1035db9eedc19f409e4 Mon Sep 17 00:00:00 2001 From: aystarik Date: Wed, 29 Jun 2005 16:17:45 +0000 Subject: [PATCH] Fix for 16-bit generation date 2004.05.25.20.51.00; author rmoore1; state Exp; --- source/components/debugger/dbcmds.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/source/components/debugger/dbcmds.c b/source/components/debugger/dbcmds.c index cea8271fd..d5990bc89 100644 --- a/source/components/debugger/dbcmds.c +++ b/source/components/debugger/dbcmds.c @@ -1,7 +1,7 @@ /******************************************************************************* * * Module Name: dbcmds - debug commands and output routines - * $Revision: 1.112 $ + * $Revision: 1.113 $ * ******************************************************************************/ @@ -161,6 +161,9 @@ ACPI_STATUS AcpiDbSleep ( char *ObjectArg) { +#if ACPI_MACHINE_WIDTH == 16 + return (AE_OK); +#else ACPI_STATUS Status; UINT8 SleepState; @@ -185,6 +188,7 @@ AcpiDbSleep ( Status = AcpiLeaveSleepState (SleepState); return (Status); +#endif }