diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2012-02-23 13:45:18 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-02-24 13:36:02 -0600 |
commit | 8283c4f565a26b3415961c481d980310c83dd2b4 (patch) | |
tree | 13ab2d296d5e3e7db06a4353bd6ddabb68eb2f93 /hw/acpi_piix4.c | |
parent | 2886be1b01c274570fa139748a402207482405bd (diff) | |
download | qemu-8283c4f565a26b3415961c481d980310c83dd2b4.tar.gz qemu-8283c4f565a26b3415961c481d980310c83dd2b4.tar.bz2 qemu-8283c4f565a26b3415961c481d980310c83dd2b4.zip |
acpi: add acpi_pm1_evt_write_en
Do APCIREGS->pm1.evt.en updates using the new acpi_pm1_evt_write_en
function, so the acpi code will see those updates.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/acpi_piix4.c')
-rw-r--r-- | hw/acpi_piix4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/acpi_piix4.c b/hw/acpi_piix4.c index 5b16d2039c..164122977e 100644 --- a/hw/acpi_piix4.c +++ b/hw/acpi_piix4.c @@ -117,7 +117,7 @@ static void pm_ioport_write(IORange *ioport, uint64_t addr, unsigned width, pm_update_sci(s); break; case 0x02: - s->ar.pm1.evt.en = val; + acpi_pm1_evt_write_en(&s->ar, val); pm_update_sci(s); break; case 0x04: |