aboutsummaryrefslogtreecommitdiffstats
path: root/hw/sparc32_dma.c
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2010-02-15 17:49:06 +0000
committerBlue Swirl <blauwirbel@gmail.com>2010-02-15 17:49:06 +0000
commit47de922d9c46c8ae42ab38a5e1fa8b68d41865d9 (patch)
tree6897c96c788c982327bc7028a9f69e33f4bee6d0 /hw/sparc32_dma.c
parent40e9eddd3850e7c732c4a80e5e5ce5c490dcf07c (diff)
Revert "Sparc32: improve DMA controller IRQ debugging"
This reverts commit 787cfbc432bf1d353a77cbdb613754f3963371a3.
Diffstat (limited to 'hw/sparc32_dma.c')
-rw-r--r--hw/sparc32_dma.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/hw/sparc32_dma.c b/hw/sparc32_dma.c
index 6e991e073..faf6dbc1c 100644
--- a/hw/sparc32_dma.c
+++ b/hw/sparc32_dma.c
@@ -142,7 +142,6 @@ void espdma_memory_read(void *opaque, uint8_t *buf, int len)
DPRINTF("DMA read, direction: %c, addr 0x%8.8x\n",
s->dmaregs[0] & DMA_WRITE_MEM ? 'w': 'r', s->dmaregs[1]);
sparc_iommu_memory_read(s->iommu, s->dmaregs[1], buf, len);
- DPRINTF("Raise IRQ\n");
s->dmaregs[0] |= DMA_INTR;
s->dmaregs[1] += len;
}
@@ -154,7 +153,6 @@ void espdma_memory_write(void *opaque, uint8_t *buf, int len)
DPRINTF("DMA write, direction: %c, addr 0x%8.8x\n",
s->dmaregs[0] & DMA_WRITE_MEM ? 'w': 'r', s->dmaregs[1]);
sparc_iommu_memory_write(s->iommu, s->dmaregs[1], buf, len);
- DPRINTF("Raise IRQ\n");
s->dmaregs[0] |= DMA_INTR;
s->dmaregs[1] += len;
}