From 6b0102db76ce99796a96d2db77a3e712135e8fac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Neusch=C3=A4fer?= Date: Wed, 12 Sep 2018 12:26:45 +0200 Subject: arch/x86/acpigen: Fix comment in _ROM method generator MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Commit 24462e6507 ("x86/acpigen: Fix ACPI _ROM method") changed the code to generate a serialized method, but didn't adjust the comment. Change-Id: Ie7dbaff13d36f31e9d627609d0f74a4e9fa5a1e9 Signed-off-by: Jonathan Neuschäfer Reviewed-on: https://review.coreboot.org/28591 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth --- src/arch/x86/acpigen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/x86/acpigen.c b/src/arch/x86/acpigen.c index e10d3077b2..a630ef2118 100644 --- a/src/arch/x86/acpigen.c +++ b/src/arch/x86/acpigen.c @@ -1453,7 +1453,7 @@ void acpigen_write_rom(void *bios, const size_t length) ASSERT(bios) ASSERT(length) - /* Method (_ROM, 2, NotSerialized) */ + /* Method (_ROM, 2, Serialized) */ acpigen_write_method_serialized("_ROM", 2); /* OperationRegion("ROMS", SYSTEMMEMORY, current, length) */ -- cgit v1.2.3