summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVladimir Serbinenko <phcoder@gmail.com>2014-10-05 11:08:40 +0200
committerVladimir Serbinenko <phcoder@gmail.com>2014-10-10 08:55:48 +0200
commit6b330f2a2462a72c2d10940b5e06b99f02b20297 (patch)
tree9d1c3c8e1a04dadee88db7d27b1fae14ca089f9a
parent7309c64d483abb4bf4ebe12901109320d88124ba (diff)
downloadcoreboot-staging-6b330f2a2462a72c2d10940b5e06b99f02b20297.zip
coreboot-staging-6b330f2a2462a72c2d10940b5e06b99f02b20297.tar.gz
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>
-rw-r--r--src/southbridge/intel/lynxpoint/acpi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/southbridge/intel/lynxpoint/acpi.c b/src/southbridge/intel/lynxpoint/acpi.c
index ef1c9d8..d1c8934 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);
OpenPOWER on IntegriCloud