Fix for 16-bit generation

date	2004.05.25.20.51.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 16:17:45 +00:00
parent fdbedec12b
commit 8de27a6240

View File

@ -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
}