diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2018-04-20 15:52:39 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2018-04-26 13:57:00 +0100 |
commit | 87364af8fe0c9def2e9de8e63f6b66135834318c (patch) | |
tree | f62a8f7d53ed72c7b3caad655c1332e8ab664c9c /hw/mips/boston.c | |
parent | c221287f8ff4e46fffad11bb2a6bc99442e845be (diff) | |
download | qemu-87364af8fe0c9def2e9de8e63f6b66135834318c.zip qemu-87364af8fe0c9def2e9de8e63f6b66135834318c.tar.gz qemu-87364af8fe0c9def2e9de8e63f6b66135834318c.tar.bz2 |
hw/mips/boston.c: Don't create "null" chardevs for serial devices
Following commit 12051d82f004024, UART devices should handle
being passed a NULL pointer chardev, so we don't need to
create "null" backends in board code. Remove the code that
does this and updates serial_hds[].
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-id: 20180420145249.32435-4-peter.maydell@linaro.org
Diffstat (limited to 'hw/mips/boston.c')
-rw-r--r-- | hw/mips/boston.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/hw/mips/boston.c b/hw/mips/boston.c index fb23161..14f0f66 100644 --- a/hw/mips/boston.c +++ b/hw/mips/boston.c @@ -505,10 +505,6 @@ static void boston_mach_init(MachineState *machine) "boston-platregs", 0x1000); memory_region_add_subregion_overlap(sys_mem, 0x17ffd000, platreg, 0); - if (!serial_hds[0]) { - serial_hds[0] = qemu_chr_new("serial0", "null"); - } - s->uart = serial_mm_init(sys_mem, 0x17ffe000, 2, get_cps_irq(s->cps, 3), 10000000, serial_hds[0], DEVICE_NATIVE_ENDIAN); |