diff options
author | Gal Hammer <ghammer@redhat.com> | 2015-04-21 11:26:12 +0300 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2015-04-28 07:56:19 +0200 |
commit | 7824df3889499acc7466317175a3fb24a0824002 (patch) | |
tree | da5453a3cf37c3f7361bda04e52ed5da5a7addeb /hw/i386 | |
parent | bc09e06113e79e5d70cf2b37015a26f2102cc03e (diff) | |
download | qemu-7824df3889499acc7466317175a3fb24a0824002.zip qemu-7824df3889499acc7466317175a3fb24a0824002.tar.gz qemu-7824df3889499acc7466317175a3fb24a0824002.tar.bz2 |
acpi: add a missing backslash to the \_SB scope.
A predefined scope in the ACPI specs is precede with a backslash.
Signed-off-by: Gal Hammer <ghammer@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Diffstat (limited to 'hw/i386')
-rw-r--r-- | hw/i386/acpi-build.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c index 967448a..02b2e0c 100644 --- a/hw/i386/acpi-build.c +++ b/hw/i386/acpi-build.c @@ -763,7 +763,7 @@ build_ssdt(GArray *table_data, GArray *linker, aml_append(ssdt, scope); } - sb_scope = aml_scope("_SB"); + sb_scope = aml_scope("\\_SB"); { /* create PCI0.PRES device and its _CRS to reserve CPU hotplug MMIO */ dev = aml_device("PCI0." stringify(CPU_HOTPLUG_RESOURCE_DEVICE)); |