Skip to content

Commit

Permalink
ACPICA: ACPI 6.3: PPTT add additional fields in Processor Structure F…
Browse files Browse the repository at this point in the history
…lags

ACPICA commit c736ea34add19a3a07e0e398711847cd6b95affd

Link: https://github.com/acpica/acpica/commit/c736ea34
Signed-off-by: Erik Schmauss <erik.schmauss@intel.com>
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
  • Loading branch information
Erik Schmauss authored and Rafael J. Wysocki committed Feb 24, 2019
1 parent ddcfd66 commit b5eab51
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions include/acpi/actbl2.h
Original file line number Diff line number Diff line change
Expand Up @@ -1474,8 +1474,11 @@ struct acpi_pptt_processor {

/* Flags */

#define ACPI_PPTT_PHYSICAL_PACKAGE (1) /* Physical package */
#define ACPI_PPTT_ACPI_PROCESSOR_ID_VALID (2) /* ACPI Processor ID valid */
#define ACPI_PPTT_PHYSICAL_PACKAGE (1)
#define ACPI_PPTT_ACPI_PROCESSOR_ID_VALID (1<<1)
#define ACPI_PPTT_ACPI_PROCESSOR_IS_THREAD (1<<2) /* ACPI 6.3 */
#define ACPI_PPTT_ACPI_LEAF_NODE (1<<3) /* ACPI 6.3 */
#define ACPI_PPTT_ACPI_IDENTICAL (1<<4) /* ACPI 6.3 */

/* 1: Cache Type Structure */

Expand Down

0 comments on commit b5eab51

Please sign in to comment.