diff options
author | Bob Moore | 2021-08-03 20:10:46 +0200 |
---|---|---|
committer | Rafael J. Wysocki | 2021-08-16 16:47:02 +0200 |
commit | 87b8ec5846cb81747088d1729acaf55a1155a267 (patch) | |
tree | 937649442628e5bee86f9a614558f71d0fb950f8 /include | |
parent | 200950b615d5d788dfd8b12d73568e420735bfb0 (diff) |
ACPICA: iASL: Fix for WPBT table with no command-line arguments
Handle the case where the Command-line Arguments table field
does not exist.
ACPICA commit d6487164497fda170a1b1453c5d58f2be7c873d6
Link: https://github.com/acpica/acpica/commit/d6487164
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/acpi/actbl3.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/acpi/actbl3.h b/include/acpi/actbl3.h index 86903ac5bbc5..9125e2f16329 100644 --- a/include/acpi/actbl3.h +++ b/include/acpi/actbl3.h @@ -723,6 +723,10 @@ struct acpi_table_wpbt { u16 arguments_length; }; +struct acpi_wpbt_unicode { + u16 *unicode_string; +}; + /******************************************************************************* * * WSMT - Windows SMM Security Mitigations Table |