]> Git Repo - qemu.git/commitdiff
hw/xtensa/xtfpga.c: Don't create "null" chardevs for serial devices
authorPeter Maydell <[email protected]>
Fri, 20 Apr 2018 14:52:41 +0000 (15:52 +0100)
committerPeter Maydell <[email protected]>
Thu, 26 Apr 2018 12:57:00 +0000 (13:57 +0100)
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 <[email protected]>
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
Reviewed-by: Thomas Huth <[email protected]>
Tested-by: Philippe Mathieu-Daudé <[email protected]>
Message-id: 20180420145249[email protected]

hw/xtensa/xtfpga.c

index 70686a2eb101ce4ed706b2cd46df2dbd63690699..9db99e1f7efe608b62dcc58c3feecf010e95f5ac 100644 (file)
@@ -278,10 +278,6 @@ static void xtfpga_init(const XtfpgaBoardDesc *board, MachineState *machine)
                 xtensa_get_extint(env, 1), nd_table);
     }
 
-    if (!serial_hds[0]) {
-        serial_hds[0] = qemu_chr_new("serial0", "null");
-    }
-
     serial_mm_init(system_io, 0x0d050020, 2, xtensa_get_extint(env, 0),
             115200, serial_hds[0], DEVICE_NATIVE_ENDIAN);
 
This page took 0.027805 seconds and 4 git commands to generate.