Stub implementation of AcpiRemoveGpeBlock

date	2003.03.26.22.52.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 16:49:20 +00:00
parent d40f19a7e9
commit 82cf760109

View File

@ -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);
}