diff options
author | Paul Menzel <paulepanter@users.sourceforge.net> | 2013-11-18 11:57:45 +0100 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2014-01-12 03:44:55 +0100 |
commit | cd4774084469ab44f2f6c3f195537e618e965db4 (patch) | |
tree | 782e3526b96e732365570542c86f40c7ebecda78 | |
parent | 8ebc72cddae96aac8728f8ffc6882637ea073cec (diff) | |
download | coreboot-cd4774084469ab44f2f6c3f195537e618e965db4.tar.xz |
arch/x86/acpi/globutil.asl: Make control method `S2BF` serialized
This changes eliminates a warning from the ASL compiler.
Change-Id: I502cca731b6b4cd3e17c57fc191f1eed10a5a1fe
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-on: http://review.coreboot.org/4093
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Tested-by: build bot (Jenkins)
-rw-r--r-- | src/arch/x86/acpi/globutil.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/acpi/globutil.asl b/src/arch/x86/acpi/globutil.asl index b39113f89b..a39d6edc87 100644 --- a/src/arch/x86/acpi/globutil.asl +++ b/src/arch/x86/acpi/globutil.asl @@ -39,7 +39,7 @@ Method(SLEN, 1) Return(Sizeof(Local0)) } -Method(S2BF, 1) +Method(S2BF, 1, Serialized) { Add(SLEN(Arg0), One, Local0) Name(BUFF, Buffer(Local0) {}) |