diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2014-08-04 17:11:11 -0400 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2014-08-15 18:03:12 +0100 |
commit | 0def37baf9add908c5462b0b8e2d3f80b563a9f9 (patch) | |
tree | 45b286e69aa66ac4e0abed51a3ab0e69c08ab4e7 /hw/ide/ahci.c | |
parent | 4855b57639d181362678ab09614a7f753df8e466 (diff) | |
download | qemu-0def37baf9add908c5462b0b8e2d3f80b563a9f9.zip qemu-0def37baf9add908c5462b0b8e2d3f80b563a9f9.tar.gz qemu-0def37baf9add908c5462b0b8e2d3f80b563a9f9.tar.bz2 |
ide: remove wrong setting of BM_STATUS_INT
Similar to the case removed in commit 69c38b8 (ide/core: Remove explicit
setting of BM_STATUS_INT, 2011-05-19), the only remaining use of
add_status(..., BM_STATUS_INT) is for short PRDs. The flag should
not be raised in this case.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: John Snow <jsnow@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'hw/ide/ahci.c')
-rw-r--r-- | hw/ide/ahci.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/hw/ide/ahci.c b/hw/ide/ahci.c index adbac3d..14677ec 100644 --- a/hw/ide/ahci.c +++ b/hw/ide/ahci.c @@ -1107,10 +1107,6 @@ static int ahci_dma_add_status(IDEDMA *dma, int status) AHCIDevice *ad = DO_UPCAST(AHCIDevice, dma, dma); DPRINTF(ad->port_no, "set status: %x\n", status); - if (status & BM_STATUS_INT) { - ahci_trigger_irq(ad->hba, ad, PORT_IRQ_STAT_DSS); - } - return 0; } |