summaryrefslogtreecommitdiffstats
path: root/sys/dev/acpica/acpi_ec.c
diff options
context:
space:
mode:
authortakawata <takawata@FreeBSD.org>2000-12-20 17:00:33 +0000
committertakawata <takawata@FreeBSD.org>2000-12-20 17:00:33 +0000
commit686921163f604a169f930948d1f947fa0d7c8354 (patch)
tree1b46c2a7cb4db1537164b2dc55457715e7ec41fe /sys/dev/acpica/acpi_ec.c
parent3ca85b60efe87eb2224bb1d8359e7deefc5be176 (diff)
downloadFreeBSD-src-686921163f604a169f930948d1f947fa0d7c8354.zip
FreeBSD-src-686921163f604a169f930948d1f947fa0d7c8354.tar.gz
Change priority of procedure queueing.
This is needed to next ACPICA import.
Diffstat (limited to 'sys/dev/acpica/acpi_ec.c')
-rw-r--r--sys/dev/acpica/acpi_ec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpica/acpi_ec.c b/sys/dev/acpica/acpi_ec.c
index 8bc5bf3..67b7f7d 100644
--- a/sys/dev/acpica/acpi_ec.c
+++ b/sys/dev/acpica/acpi_ec.c
@@ -477,7 +477,7 @@ static void EcGpeHandler(void *Context)
}
}else{
/*Queue GpeQuery Handler*/
- if(AcpiOsQueueForExecution(OSD_PRIORITY_GPE,
+ if(AcpiOsQueueForExecution(OSD_PRIORITY_HIGH,
EcGpeQueryHandler,Context) != AE_OK){
printf("QueryHandler Queuing Failed\n");
}
@@ -667,7 +667,7 @@ EcTransaction(struct acpi_ec_softc *sc, EC_REQUEST *EcRequest)
* immediately after we re-enabling it.
*/
if (sc->ec_pendquery){
- if(AcpiOsQueueForExecution(OSD_PRIORITY_GPE,
+ if(AcpiOsQueueForExecution(OSD_PRIORITY_HIGH,
EcGpeQueryHandler, sc) != AE_OK)
printf("Pend Query Queuing Failed\n");
sc->ec_pendquery = 0;
OpenPOWER on IntegriCloud