summaryrefslogtreecommitdiff
path: root/src/drivers/pc80/tpm
diff options
context:
space:
mode:
authorDuncan Laurie <dlaurie@chromium.org>2015-09-22 09:39:23 -0700
committerPatrick Georgi <pgeorgi@google.com>2015-09-28 09:33:55 +0000
commit16ea5191207cb14d5fce3e763f18e046701d215b (patch)
tree80aa5eb7efc865ef2cdcb0cfba242700e3499b75 /src/drivers/pc80/tpm
parentbf84cf93cc67721adb3ee85165fe4aac29e1c556 (diff)
downloadcoreboot-16ea5191207cb14d5fce3e763f18e046701d215b.tar.xz
tpm: acpi: Make _CRS method serialized
Since the TPM _CRS method creates named objects it needs to be serialized to prevent a warning in recent iasl. BUG=chrome-os-partner:40635 BRANCH=none TEST=build glados with iasl-20150717 Change-Id: I59a52552ab24b7d9c9928331aa8c8d19f54fd1b7 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Original-Commit-Id: 2a5c474c94980661573a99eb94d5f661f2d0114b Original-Change-Id: Ie9d164ea8781304dd0bf1833d182d7c601b8e18d Original-Signed-off-by: Duncan Laurie <dlaurie@chromium.org> Original-Reviewed-on: https://chromium-review.googlesource.com/302162 Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: http://review.coreboot.org/11715 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/drivers/pc80/tpm')
-rw-r--r--src/drivers/pc80/tpm/acpi/tpm.asl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/pc80/tpm/acpi/tpm.asl b/src/drivers/pc80/tpm/acpi/tpm.asl
index ece63e25e3..489fec7308 100644
--- a/src/drivers/pc80/tpm/acpi/tpm.asl
+++ b/src/drivers/pc80/tpm/acpi/tpm.asl
@@ -47,7 +47,7 @@ Device (TPM)
Memory32Fixed (ReadWrite, CONFIG_TPM_TIS_BASE_ADDRESS, 0x5000)
})
- Method (_CRS, 0, NotSerialized)
+ Method (_CRS, 0, Serialized)
{
OperationRegion (TREG, SystemMemory,
CONFIG_TPM_TIS_BASE_ADDRESS, 0x5000)