diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2014-10-05 11:08:40 +0200 |
---|---|---|
committer | Vladimir Serbinenko <phcoder@gmail.com> | 2014-10-10 08:55:48 +0200 |
commit | 6b330f2a2462a72c2d10940b5e06b99f02b20297 (patch) | |
tree | 9d1c3c8e1a04dadee88db7d27b1fae14ca089f9a /src/southbridge/intel/lynxpoint | |
parent | 7309c64d483abb4bf4ebe12901109320d88124ba (diff) | |
download | coreboot-6b330f2a2462a72c2d10940b5e06b99f02b20297.tar.xz |
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>
Diffstat (limited to 'src/southbridge/intel/lynxpoint')
-rw-r--r-- | src/southbridge/intel/lynxpoint/acpi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/southbridge/intel/lynxpoint/acpi.c b/src/southbridge/intel/lynxpoint/acpi.c index ef1c9d877c..d1c8934c2e 100644 --- a/src/southbridge/intel/lynxpoint/acpi.c +++ b/src/southbridge/intel/lynxpoint/acpi.c @@ -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); |