summaryrefslogtreecommitdiffstats
path: root/hw/i386
diff options
context:
space:
mode:
authorCorey Minyard2015-06-09 22:13:29 +0200
committerCorey Minyard2019-09-20 21:08:10 +0200
commit576d05b67fa0566cfb92da93c810a55a035548d0 (patch)
tree6b3efda510475eb30b8007d034c22bcf8f9cd6bb /hw/i386
parentacpi: Add i2c serial bus CRS handling (diff)
downloadqemu-576d05b67fa0566cfb92da93c810a55a035548d0.tar.gz
qemu-576d05b67fa0566cfb92da93c810a55a035548d0.tar.xz
qemu-576d05b67fa0566cfb92da93c810a55a035548d0.zip
ipmi: Fix SSIF ACPI handling to use the right CRS
Pass in the CRS so that it can be set to the SMBus for IPMI later. Cc: Michael S. Tsirkin <mst@redhat.com> Cc: Igor Mammedov <imammedo@redhat.com> Signed-off-by: Corey Minyard <cminyard@mvista.com>
Diffstat (limited to 'hw/i386')
-rw-r--r--hw/i386/acpi-build.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
index e54e571a75..8acf12df9a 100644
--- a/hw/i386/acpi-build.c
+++ b/hw/i386/acpi-build.c
@@ -1290,7 +1290,7 @@ static void build_isa_devices_aml(Aml *table)
} else if (!obj) {
error_report("No ISA bus, unable to define IPMI ACPI data");
} else {
- build_acpi_ipmi_devices(scope, BUS(obj));
+ build_acpi_ipmi_devices(scope, BUS(obj), "\\_SB.PCI0.ISA");
}
aml_append(table, scope);