diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2010-11-09 11:47:47 +0100 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2010-11-09 16:51:12 +0300 |
commit | 6a0d02f5be44ee17cf0ce843f0658d08e97a68c2 (patch) | |
tree | ad922b30132fb612c5abf4682511a3c0b770bb94 /hw/intel-hda.c | |
parent | af93485cde810f3c2f488533e0b60c99eae5d01d (diff) |
intel-hda: update irq status on WAKEEN changes.
When the guest updates the WAKEEN register we
must re-calculate the IRQ status.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'hw/intel-hda.c')
-rw-r--r-- | hw/intel-hda.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hw/intel-hda.c b/hw/intel-hda.c index 2c1ef12491..e478e677c5 100644 --- a/hw/intel-hda.c +++ b/hw/intel-hda.c @@ -508,6 +508,11 @@ static void intel_hda_set_g_ctl(IntelHDAState *d, const IntelHDAReg *reg, uint32 } } +static void intel_hda_set_wake_en(IntelHDAState *d, const IntelHDAReg *reg, uint32_t old) +{ + intel_hda_update_irq(d); +} + static void intel_hda_set_state_sts(IntelHDAState *d, const IntelHDAReg *reg, uint32_t old) { intel_hda_update_irq(d); @@ -630,6 +635,7 @@ static const struct IntelHDAReg regtab[] = { .size = 2, .wmask = 0x3fff, .offset = offsetof(IntelHDAState, wake_en), + .whandler = intel_hda_set_wake_en, }, [ ICH6_REG_STATESTS ] = { .name = "STATESTS", |