diff options
author | Corey Minyard <cminyard@mvista.com> | 2015-06-09 15:13:29 -0500 |
---|---|---|
committer | Corey Minyard <cminyard@mvista.com> | 2019-09-20 14:08:10 -0500 |
commit | 576d05b67fa0566cfb92da93c810a55a035548d0 (patch) | |
tree | 6b3efda510475eb30b8007d034c22bcf8f9cd6bb /hw/i386 | |
parent | ef48a8ce411a93bd610776ee83164efc973f8094 (diff) | |
download | qemu-576d05b67fa0566cfb92da93c810a55a035548d0.zip qemu-576d05b67fa0566cfb92da93c810a55a035548d0.tar.gz qemu-576d05b67fa0566cfb92da93c810a55a035548d0.tar.bz2 |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c index e54e571..8acf12d 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); |