mirror of
https://github.com/acpica/acpica/
synced 2025-01-29 12:45:29 +03:00
Fix for 16-bit generation
date 2004.05.25.20.51.00; author rmoore1; state Exp;
This commit is contained in:
parent
fdbedec12b
commit
8de27a6240
@ -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
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user