lynxpoint: Change OEM table ID for serialio.
According to ACPI spec all SSDTs should have distinct OEM table ID. We end up with 2 SSDTs named "COREBOOT". Fix this. Change-Id: I01bccb72758baf51c6b4263778716f4bb9d438c9 Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/7016 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@google.com>
This commit is contained in:
parent
7309c64d48
commit
6b330f2a24
|
@ -78,8 +78,8 @@ void acpi_create_serialio_ssdt(acpi_header_t *ssdt)
|
|||
memcpy(&ssdt->signature, "SSDT", 4);
|
||||
ssdt->revision = 2;
|
||||
memcpy(&ssdt->oem_id, OEM_ID, 6);
|
||||
memcpy(&ssdt->oem_table_id, ACPI_TABLE_CREATOR, 8);
|
||||
ssdt->oem_revision = 42;
|
||||
memcpy(&ssdt->oem_table_id, "SERIALIO", 8);
|
||||
ssdt->oem_revision = 43;
|
||||
memcpy(&ssdt->asl_compiler_id, ASLC, 4);
|
||||
ssdt->asl_compiler_revision = 42;
|
||||
ssdt->length = sizeof(acpi_header_t);
|
||||
|
|
Loading…
Reference in New Issue