diff options
author | Marc-André Lureau | 2019-10-22 01:02:50 +0200 |
---|---|---|
committer | Marc-André Lureau | 2020-01-07 13:50:48 +0100 |
commit | c9808d602813bce4fada7bf9ecc463aa779b73f7 (patch) | |
tree | af4b95f690cbcd97139756bcf6e4146a8d7d24da /include/hw | |
parent | serial: add "baudbase" property (diff) | |
download | qemu-c9808d602813bce4fada7bf9ecc463aa779b73f7.tar.gz qemu-c9808d602813bce4fada7bf9ecc463aa779b73f7.tar.xz qemu-c9808d602813bce4fada7bf9ecc463aa779b73f7.zip |
serial: realize the serial device
Instead of calling serial_realize_core(), use the QDev realize
callback.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'include/hw')
-rw-r--r-- | include/hw/char/serial.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/hw/char/serial.h b/include/hw/char/serial.h index 3dc618598e..571aab97c8 100644 --- a/include/hw/char/serial.h +++ b/include/hw/char/serial.h @@ -83,7 +83,6 @@ typedef struct SerialState { extern const VMStateDescription vmstate_serial; extern const MemoryRegionOps serial_io_ops; -void serial_realize_core(SerialState *s, Error **errp); void serial_exit_core(SerialState *s); void serial_set_frequency(SerialState *s, uint32_t frequency); |