Skip to content

Commit 88055d8

Browse files
crojewsk-intelrafaeljw
authored andcommitted
ACPICA: Add NHLT table signature
ACPICA commit 422166b656565d180bb3aac712009bdce5e70cdd NHLT (Non-HDAudio Link Table) provides configuration of audio endpoints for Intel SST (Smart Sound Technology) DSP products. Similarly to other ACPI tables, data provided by BIOS may not describe it correctly, thus overriding is required. ACPI override mechanism checks for unknown signature before proceeding. Update known signatures array to support NHLT. Link: acpica/acpica@422166b6 Signed-off-by: Cezary Rojewski <[email protected]> Signed-off-by: Bob Moore <[email protected]> Signed-off-by: Erik Kaneda <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent afb9087 commit 88055d8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

drivers/acpi/tables.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ static const char * const table_sigs[] = {
501501
ACPI_SIG_WDDT, ACPI_SIG_WDRT, ACPI_SIG_DSDT, ACPI_SIG_FADT,
502502
ACPI_SIG_PSDT, ACPI_SIG_RSDT, ACPI_SIG_XSDT, ACPI_SIG_SSDT,
503503
ACPI_SIG_IORT, ACPI_SIG_NFIT, ACPI_SIG_HMAT, ACPI_SIG_PPTT,
504-
NULL };
504+
ACPI_SIG_NHLT, NULL };
505505

506506
#define ACPI_HEADER_SIZE sizeof(struct acpi_table_header)
507507

include/acpi/actbl2.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
#define ACPI_SIG_SBST "SBST" /* Smart Battery Specification Table */
4444
#define ACPI_SIG_SDEI "SDEI" /* Software Delegated Exception Interface Table */
4545
#define ACPI_SIG_SDEV "SDEV" /* Secure Devices table */
46+
#define ACPI_SIG_NHLT "NHLT" /* Non-HDAudio Link Table */
4647

4748
/*
4849
* All tables must be byte-packed to match the ACPI specification, since

0 commit comments

Comments
 (0)