From 615415fc0e64d1da83f754ea0f33b96665d91646 Mon Sep 17 00:00:00 2001 From: aystarik Date: Wed, 29 Jun 2005 20:14:42 +0000 Subject: [PATCH] Allow notify handlers to handle both system and device notifies date 2004.04.29.22.12.00; author rmoore1; state Exp; --- source/include/actypes.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/source/include/actypes.h b/source/include/actypes.h index c891af766..e6591ba38 100644 --- a/source/include/actypes.h +++ b/source/include/actypes.h @@ -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