diff options
| author | Mark Santcroos <marks@FreeBSD.org> | 2004-07-02 08:37:56 +0000 |
|---|---|---|
| committer | Mark Santcroos <marks@FreeBSD.org> | 2004-07-02 08:37:56 +0000 |
| commit | 2e8f631a0d8ec25bb26188c0e58b82e8a60af4d5 (patch) | |
| tree | 6f4213fea65991679877cb51259830cdc03584c4 /sys/contrib | |
| parent | 727fde6f33f9dae8e59c2d597db15cead4d3a2f3 (diff) | |
Notes
Diffstat (limited to 'sys/contrib')
| -rw-r--r-- | sys/contrib/dev/acpica/dbcmds.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/contrib/dev/acpica/dbcmds.c b/sys/contrib/dev/acpica/dbcmds.c index b7c749d9fefa..5c2345c05e02 100644 --- a/sys/contrib/dev/acpica/dbcmds.c +++ b/sys/contrib/dev/acpica/dbcmds.c @@ -1,7 +1,7 @@ /******************************************************************************* * * Module Name: dbcmds - debug commands and output routines - * $Revision: 112 $ + * $Revision: 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 } |
