diff options
author | Bob Moore <robert.moore@intel.com> | 2014-07-30 00:21:31 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-07-30 18:50:24 -0400 |
commit | b3cc1356a6bd5c1b1269f2201e7ae65a458b662d (patch) | |
tree | eab80e467199ffae753575affa65a59ad29d41bb | |
parent | a9f65e01aa52692756ac5e6357502921a55f8a0e (diff) |
ACPICA: ACPI 5.1: New notify value for System Affinity Update.
New value for the Notify() operator.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r-- | drivers/acpi/acpica/utdecode.c | 5 | ||||
-rw-r--r-- | include/acpi/actypes.h | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/drivers/acpi/acpica/utdecode.c b/drivers/acpi/acpica/utdecode.c index 98f541873810..40e923e675fc 100644 --- a/drivers/acpi/acpica/utdecode.c +++ b/drivers/acpi/acpica/utdecode.c | |||
@@ -448,7 +448,8 @@ static const char *acpi_gbl_generic_notify[ACPI_NOTIFY_MAX + 1] = { | |||
448 | /* 09 */ "Device PLD Check", | 448 | /* 09 */ "Device PLD Check", |
449 | /* 0A */ "Reserved", | 449 | /* 0A */ "Reserved", |
450 | /* 0B */ "System Locality Update", | 450 | /* 0B */ "System Locality Update", |
451 | /* 0C */ "Shutdown Request" | 451 | /* 0C */ "Shutdown Request", |
452 | /* 0D */ "System Resource Affinity Update" | ||
452 | }; | 453 | }; |
453 | 454 | ||
454 | static const char *acpi_gbl_device_notify[4] = { | 455 | static const char *acpi_gbl_device_notify[4] = { |
@@ -475,7 +476,7 @@ static const char *acpi_gbl_thermal_notify[4] = { | |||
475 | const char *acpi_ut_get_notify_name(u32 notify_value, acpi_object_type type) | 476 | const char *acpi_ut_get_notify_name(u32 notify_value, acpi_object_type type) |
476 | { | 477 | { |
477 | 478 | ||
478 | /* 00 - 0C are common to all object types */ | 479 | /* 00 - 0D are common to all object types */ |
479 | 480 | ||
480 | if (notify_value <= ACPI_NOTIFY_MAX) { | 481 | if (notify_value <= ACPI_NOTIFY_MAX) { |
481 | return (acpi_gbl_generic_notify[notify_value]); | 482 | return (acpi_gbl_generic_notify[notify_value]); |
diff --git a/include/acpi/actypes.h b/include/acpi/actypes.h index 4d9b29c436b2..ac03ec81d342 100644 --- a/include/acpi/actypes.h +++ b/include/acpi/actypes.h | |||
@@ -612,8 +612,9 @@ typedef u64 acpi_integer; | |||
612 | #define ACPI_NOTIFY_RESERVED (u8) 0x0A | 612 | #define ACPI_NOTIFY_RESERVED (u8) 0x0A |
613 | #define ACPI_NOTIFY_LOCALITY_UPDATE (u8) 0x0B | 613 | #define ACPI_NOTIFY_LOCALITY_UPDATE (u8) 0x0B |
614 | #define ACPI_NOTIFY_SHUTDOWN_REQUEST (u8) 0x0C | 614 | #define ACPI_NOTIFY_SHUTDOWN_REQUEST (u8) 0x0C |
615 | #define ACPI_NOTIFY_AFFINITY_UPDATE (u8) 0x0D | ||
615 | 616 | ||
616 | #define ACPI_NOTIFY_MAX 0x0C | 617 | #define ACPI_NOTIFY_MAX 0x0D |
617 | 618 | ||
618 | /* | 619 | /* |
619 | * Types associated with ACPI names and objects. The first group of | 620 | * Types associated with ACPI names and objects. The first group of |