Revert "Sparc32: improve DMA controller IRQ debugging"
authorBlue Swirl <blauwirbel@gmail.com>
Mon, 15 Feb 2010 17:49:06 +0000 (17:49 +0000)
committerBlue Swirl <blauwirbel@gmail.com>
Mon, 15 Feb 2010 17:49:06 +0000 (17:49 +0000)
This reverts commit 787cfbc432bf1d353a77cbdb613754f3963371a3.

hw/sparc32_dma.c

index 6e991e073424090d6a8242b35dbda8e5da1fc243..faf6dbc1cf2578dea8a34f84e1391a6bd1bef26a 100644 (file)
@@ -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;
 }