mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 03:59:52 +00:00
Remove old leftovers
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3121 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
2d069bab6a
commit
9b5207aabb
@ -59,7 +59,6 @@ struct DMAState {
|
||||
uint32_t dmaregs[DMA_REGS];
|
||||
qemu_irq irq;
|
||||
void *iommu;
|
||||
qemu_irq *pic;
|
||||
qemu_irq dev_reset;
|
||||
};
|
||||
|
||||
@ -119,12 +118,12 @@ static void dma_set_irq(void *opaque, int irq, int level)
|
||||
{
|
||||
DMAState *s = opaque;
|
||||
if (level) {
|
||||
DPRINTF("Raise ESP IRQ\n");
|
||||
DPRINTF("Raise IRQ\n");
|
||||
s->dmaregs[0] |= DMA_INTR;
|
||||
qemu_irq_raise(s->irq);
|
||||
} else {
|
||||
s->dmaregs[0] &= ~DMA_INTR;
|
||||
DPRINTF("Lower ESP IRQ\n");
|
||||
DPRINTF("Lower IRQ\n");
|
||||
qemu_irq_lower(s->irq);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user