aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/acpi/actbl1.h
diff options
context:
space:
mode:
authorAlison Schofield <alison.schofield@intel.com>2019-04-17 11:13:10 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-04-25 21:24:38 +0200
commit57f5cf6ed8bdbbcb1abf3477beeac199dcdba316 (patch)
treecfc8b84b0542d19c22214b0a6aaeef2d4fb9702e /include/acpi/actbl1.h
parentacpi/hmat: fix memory leaks in hmat_init() (diff)
downloadwireguard-linux-57f5cf6ed8bdbbcb1abf3477beeac199dcdba316.tar.xz
wireguard-linux-57f5cf6ed8bdbbcb1abf3477beeac199dcdba316.zip
acpi/hmat: Update acpi_hmat_type enum with ACPI_HMAT_TYPE_PROXIMITY
ACPI 6.3 changed the subtable "Memory Subsystem Address Range Structure" to "Memory Proximity Domain Attributes Structure". Updating and renaming of the structure was included in commit: ACPICA: ACPI 6.3: HMAT updates (9a8d961f1ef835b0d338fbe13da03cb424e87ae5) Rename the enum type to match the subtable and structure naming. Signed-off-by: Alison Schofield <alison.schofield@intel.com> Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/acpi/actbl1.h')
-rw-r--r--include/acpi/actbl1.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/acpi/actbl1.h b/include/acpi/actbl1.h
index d14037ddf108..22c039ebc6c5 100644
--- a/include/acpi/actbl1.h
+++ b/include/acpi/actbl1.h
@@ -1395,7 +1395,7 @@ struct acpi_table_hmat {
/* Values for HMAT structure types */
enum acpi_hmat_type {
- ACPI_HMAT_TYPE_ADDRESS_RANGE = 0, /* Memory subsystem address range */
+ ACPI_HMAT_TYPE_PROXIMITY = 0, /* Memory proximity domain attributes */
ACPI_HMAT_TYPE_LOCALITY = 1, /* System locality latency and bandwidth information */
ACPI_HMAT_TYPE_CACHE = 2, /* Memory side cache information */
ACPI_HMAT_TYPE_RESERVED = 3 /* 3 and greater are reserved */