Skip to content

Commit c2b9af1

Browse files
committed
Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging
acpi: SSDT update This has a fix by Igor for a regression introduced by bridge hotplug code. Expected test files were updated accordingly. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> # gpg: Signature made Mon 14 Apr 2014 13:13:35 BST using RSA key ID D28D5469 # gpg: Good signature from "Michael S. Tsirkin <mst@kernel.org>" # gpg: aka "Michael S. Tsirkin <mst@redhat.com>" * remotes/mst/tags/for_upstream: acpi-test: update expected files acpi: fix incorrect encoding for 0x{F-1}FFFF Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
2 parents 940973a + 8611224 commit c2b9af1

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

hw/i386/acpi-build.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ static void build_append_int(GArray *table, uint32_t value)
391391
build_append_byte(table, 0x01); /* OneOp */
392392
} else if (value <= 0xFF) {
393393
build_append_value(table, value, 1);
394-
} else if (value <= 0xFFFFF) {
394+
} else if (value <= 0xFFFF) {
395395
build_append_value(table, value, 2);
396396
} else {
397397
build_append_value(table, value, 4);

tests/acpi-test-data/pc/SSDT

8 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)