mirror of
https://github.com/acpica/acpica/
synced 2025-01-18 15:39:18 +03:00
Stub implementation of AcpiRemoveGpeBlock
date 2003.03.26.22.52.00; author rmoore1; state Exp;
This commit is contained in:
parent
d40f19a7e9
commit
82cf760109
@ -1,7 +1,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Module Name: evxfevnt - External Interfaces, ACPI event disable/enable
|
||||
* $Revision: 1.68 $
|
||||
* $Revision: 1.69 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -699,7 +699,7 @@ UnlockAndExit:
|
||||
*
|
||||
* FUNCTION: AcpiInstallGpeBlock
|
||||
*
|
||||
* PARAMETERS: GpeDevice - Handle to the parent GPE block
|
||||
* PARAMETERS: GpeDevice - Handle to the parent GPE Block Device
|
||||
* GpeBlockAddress - Address and SpaceID
|
||||
* RegisterCount - Number of GPE register pairs in the block
|
||||
* InterruptLevel - H/W interrupt for the block
|
||||
@ -738,4 +738,27 @@ AcpiInstallGpeBlock (
|
||||
0, InterruptLevel, NULL);
|
||||
|
||||
return_ACPI_STATUS (Status);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*******************************************************************************
|
||||
*
|
||||
* FUNCTION: AcpiRemoveGpeBlock
|
||||
*
|
||||
* PARAMETERS: GpeDevice - Handle to the parent GPE Block Device
|
||||
*
|
||||
* RETURN: Status
|
||||
*
|
||||
* DESCRIPTION: Remove a previously installed block of GPE registers
|
||||
*
|
||||
******************************************************************************/
|
||||
|
||||
ACPI_STATUS
|
||||
AcpiRemoveGpeBlock (
|
||||
ACPI_HANDLE GpeDevice)
|
||||
{
|
||||
|
||||
|
||||
return (AE_NOT_IMPLEMENTED);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user