diff options
author | iwasaki <iwasaki@FreeBSD.org> | 2000-12-20 20:22:47 +0000 |
---|---|---|
committer | iwasaki <iwasaki@FreeBSD.org> | 2000-12-20 20:22:47 +0000 |
commit | 05d0cf88f1bd8f0d0cc7cb861444fa750759e7ba (patch) | |
tree | bfeb8b1ae80968c803163e23c205bab322091f71 /sys/dev/acpica | |
parent | e18ed82a61f4b4b473c529ad38000e36ead74d38 (diff) | |
download | FreeBSD-src-05d0cf88f1bd8f0d0cc7cb861444fa750759e7ba.zip FreeBSD-src-05d0cf88f1bd8f0d0cc7cb861444fa750759e7ba.tar.gz |
Disable my previous committed code for a moment.
Note to myself: this needs to be enabled again when newer version of
ACPI is imported.
Diffstat (limited to 'sys/dev/acpica')
-rw-r--r-- | sys/dev/acpica/Osd/OsdSchedule.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/acpica/Osd/OsdSchedule.c b/sys/dev/acpica/Osd/OsdSchedule.c index 42ef54d..3aea3c8 100644 --- a/sys/dev/acpica/Osd/OsdSchedule.c +++ b/sys/dev/acpica/Osd/OsdSchedule.c @@ -73,9 +73,11 @@ AcpiOsQueueForExecution(UINT32 Priority, OSD_EXECUTION_CALLBACK Function, void * at->at_task.ta_func = AcpiOsExecuteQueue; at->at_task.ta_context = at; switch (Priority) { +#if 0 case OSD_PRIORITY_GPE: at->at_task.ta_priority = 4; break; +#endif case OSD_PRIORITY_HIGH: at->at_task.ta_priority = 3; break; |