Merge remote-tracking branch 'bonzini/split-main-loop-for-anthony' into staging

This commit is contained in:
Anthony Liguori 2011-10-24 10:51:12 -05:00
commit 952e849c15
23 changed files with 1318 additions and 1069 deletions

View file

@ -661,11 +661,6 @@ void DBDMA_register_channel(void *dbdma, int nchan, qemu_irq irq,
ch->io.channel = ch;
}
void DBDMA_schedule(void)
{
qemu_notify_event();
}
static void
dbdma_control_write(DBDMA_channel *ch)
{

View file

@ -41,5 +41,4 @@ struct DBDMA_io {
void DBDMA_register_channel(void *dbdma, int nchan, qemu_irq irq,
DBDMA_rw rw, DBDMA_flush flush,
void *opaque);
void DBDMA_schedule(void);
void* DBDMA_init (MemoryRegion **dbdma_mem);