serial-isa.c (a27bd6c779badb8d76e4430d810ef710a1b98f4e) serial-isa.c (46517dd4971fc1fdd5b379e72cc377626ad98160)
1/*
2 * QEMU 16550A UART emulation
3 *
4 * Copyright (c) 2003-2004 Fabrice Bellard
5 * Copyright (c) 2008 Citrix Systems, Inc.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal

--- 12 unchanged lines hidden (view full) ---

21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
24 */
25
26#include "qemu/osdep.h"
27#include "qapi/error.h"
28#include "qemu/module.h"
1/*
2 * QEMU 16550A UART emulation
3 *
4 * Copyright (c) 2003-2004 Fabrice Bellard
5 * Copyright (c) 2008 Citrix Systems, Inc.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal

--- 12 unchanged lines hidden (view full) ---

21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
24 */
25
26#include "qemu/osdep.h"
27#include "qapi/error.h"
28#include "qemu/module.h"
29#include "sysemu/sysemu.h"
29#include "hw/char/serial.h"
30#include "hw/isa/isa.h"
31#include "hw/qdev-properties.h"
32#include "migration/vmstate.h"
33
34#define ISA_SERIAL(obj) OBJECT_CHECK(ISASerialState, (obj), TYPE_ISA_SERIAL)
35
36typedef struct ISASerialState {

--- 115 unchanged lines hidden ---
30#include "hw/char/serial.h"
31#include "hw/isa/isa.h"
32#include "hw/qdev-properties.h"
33#include "migration/vmstate.h"
34
35#define ISA_SERIAL(obj) OBJECT_CHECK(ISASerialState, (obj), TYPE_ISA_SERIAL)
36
37typedef struct ISASerialState {

--- 115 unchanged lines hidden ---