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/acpi/ipmi-stub.c | |
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/acpi/ipmi-stub.c')
-rw-r--r-- | hw/acpi/ipmi-stub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/acpi/ipmi-stub.c b/hw/acpi/ipmi-stub.c index f525f71..8634fb3 100644 --- a/hw/acpi/ipmi-stub.c +++ b/hw/acpi/ipmi-stub.c @@ -10,6 +10,6 @@ #include "qemu/osdep.h" #include "hw/acpi/ipmi.h" -void build_acpi_ipmi_devices(Aml *table, BusState *bus) +void build_acpi_ipmi_devices(Aml *table, BusState *bus, const char *resource) { } |