mirror of
https://github.com/qemu/qemu.git
synced 2024-11-26 21:23:33 +08:00
Revert "Sparc32: improve DMA controller IRQ debugging"
This reverts commit 787cfbc432
.
This commit is contained in:
parent
40e9eddd38
commit
47de922d9c
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user