diff options
author | Philippe Mathieu-Daudé | 2018-03-08 23:39:23 +0100 |
---|---|---|
committer | Paolo Bonzini | 2018-03-12 16:12:48 +0100 |
commit | 55f613ac25420384b2c4645420fea2f9bab15379 (patch) | |
tree | 2a11965b143c9ca18523ae00169cf8123f48c40d /hw/i386/pc.c | |
parent | hw/isa: Move parallel_hds_isa_init() to hw/char/parallel-isa.c (diff) | |
download | qemu-55f613ac25420384b2c4645420fea2f9bab15379.tar.gz qemu-55f613ac25420384b2c4645420fea2f9bab15379.tar.xz qemu-55f613ac25420384b2c4645420fea2f9bab15379.zip |
hw/dma/i8257: Rename DMA_init() to i8257_dma_init()
- Move the header from hw/isa/ to hw/dma/
- Remove the old i386/pc dependency
- use a bool type for the high_page_enable argument
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20180308223946.26784-3-f4bug@amsat.org>
Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/i386/pc.c')
-rw-r--r-- | hw/i386/pc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/i386/pc.c b/hw/i386/pc.c index 8fa51d8eba..a6ceea9c64 100644 --- a/hw/i386/pc.c +++ b/hw/i386/pc.c @@ -41,6 +41,7 @@ #include "elf.h" #include "multiboot.h" #include "hw/timer/mc146818rtc.h" +#include "hw/dma/i8257.h" #include "hw/timer/i8254.h" #include "hw/audio/pcspk.h" #include "hw/pci/msi.h" @@ -1607,7 +1608,7 @@ void pc_basic_device_init(ISABus *isa_bus, qemu_irq *gsi, port92_init(port92, a20_line[1]); g_free(a20_line); - DMA_init(isa_bus, 0); + i8257_dma_init(isa_bus, 0); for(i = 0; i < MAX_FD; i++) { fd[i] = drive_get(IF_FLOPPY, 0, i); |