diff options
author | msmith <msmith@FreeBSD.org> | 2001-09-07 01:22:25 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 2001-09-07 01:22:25 +0000 |
commit | 9d39e615a85d5e81e8442ec3bf65c8dff5e393c5 (patch) | |
tree | ba0c24c50a259baa38d43cef66fae1699ec4f152 /sys/contrib/dev/acpica/hwgpe.c | |
parent | 56186efdbc469312f31299676d1ef2e2d891ec25 (diff) | |
download | FreeBSD-src-9d39e615a85d5e81e8442ec3bf65c8dff5e393c5.zip FreeBSD-src-9d39e615a85d5e81e8442ec3bf65c8dff5e393c5.tar.gz |
Vendor-branch import of the Intel ACPI CA 20010831 snapshot.
Diffstat (limited to 'sys/contrib/dev/acpica/hwgpe.c')
-rw-r--r-- | sys/contrib/dev/acpica/hwgpe.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/sys/contrib/dev/acpica/hwgpe.c b/sys/contrib/dev/acpica/hwgpe.c index 6340c80..761cd93 100644 --- a/sys/contrib/dev/acpica/hwgpe.c +++ b/sys/contrib/dev/acpica/hwgpe.c @@ -2,7 +2,7 @@ /****************************************************************************** * * Module Name: hwgpe - Low level GPE enable/disable/clear functions - * $Revision: 31 $ + * $Revision: 32 $ * *****************************************************************************/ @@ -144,6 +144,10 @@ AcpiHwEnableGpe ( UINT32 RegisterIndex; UINT32 BitMask; + + FUNCTION_ENTRY (); + + /* * Translate GPE number to index into global registers array. */ @@ -185,6 +189,10 @@ AcpiHwDisableGpe ( UINT32 RegisterIndex; UINT32 BitMask; + + FUNCTION_ENTRY (); + + /* * Translate GPE number to index into global registers array. */ @@ -226,6 +234,9 @@ AcpiHwClearGpe ( UINT32 BitMask; + FUNCTION_ENTRY (); + + /* * Translate GPE number to index into global registers array. */ @@ -266,6 +277,9 @@ AcpiHwGetGpeStatus ( UINT32 BitMask = 0; + FUNCTION_ENTRY (); + + if (!EventStatus) { return; |