Allow notify handlers to handle both system and device notifies

date	2004.04.29.22.12.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 20:14:42 +00:00
parent 3c23bb9b10
commit 615415fc0e

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Name: actypes.h - Common data types for the entire ACPI subsystem
* $Revision: 1.269 $
* $Revision: 1.270 $
*
*****************************************************************************/
@ -693,9 +693,10 @@ typedef UINT32 ACPI_EVENT_STATUS;
/* Notify types */
#define ACPI_SYSTEM_NOTIFY 0
#define ACPI_DEVICE_NOTIFY 1
#define ACPI_MAX_NOTIFY_HANDLER_TYPE 1
#define ACPI_SYSTEM_NOTIFY 0x1
#define ACPI_DEVICE_NOTIFY 0x2
#define ACPI_ALL_NOTIFY 0x3
#define ACPI_MAX_NOTIFY_HANDLER_TYPE 0x3
#define ACPI_MAX_SYS_NOTIFY 0x7f