diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2018-09-12 12:26:45 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2018-09-14 20:18:17 +0000 |
commit | 6b0102db76ce99796a96d2db77a3e712135e8fac (patch) | |
tree | 30f6fa1a1bc9fbff71aed31c5e72d70998812f15 /src/arch/x86 | |
parent | 9ce59742b7a62d0a87050f964efbea864995391f (diff) | |
download | coreboot-6b0102db76ce99796a96d2db77a3e712135e8fac.tar.xz |
arch/x86/acpigen: Fix comment in _ROM method generator
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 <j.neuschaefer@gmx.net>
Reviewed-on: https://review.coreboot.org/28591
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/acpigen.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) */ |