mirror of
https://github.com/acpica/acpica/
synced 2025-01-15 22:09:17 +03:00
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:
parent
3c23bb9b10
commit
615415fc0e
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user