diff options
| author | Efimov Vasily | 2016-06-22 14:24:47 +0200 |
|---|---|---|
| committer | Paolo Bonzini | 2016-06-29 14:03:45 +0200 |
| commit | 936a6447c8dbb7bfeb41b1007394f8ee34e69d34 (patch) | |
| tree | c6e3ede09151bdf82051bb3e623b774aba1302b6 /include/hw | |
| parent | pcspk: convert "pit" property type from ptr to link (diff) | |
| download | qemu-936a6447c8dbb7bfeb41b1007394f8ee34e69d34.tar.gz qemu-936a6447c8dbb7bfeb41b1007394f8ee34e69d34.tar.xz qemu-936a6447c8dbb7bfeb41b1007394f8ee34e69d34.zip | |
vmport: identify vmport type by macro TYPE_VMPORT
Currently vmport device is identified by the string literal. Using a
preprocessor alias instead is preferable.
Signed-off-by: Efimov Vasily <real@ispras.ru>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/hw')
| -rw-r--r-- | include/hw/i386/pc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h index 948ed0c277..bc85054561 100644 --- a/include/hw/i386/pc.h +++ b/include/hw/i386/pc.h @@ -201,11 +201,12 @@ typedef struct GSIState { void gsi_handler(void *opaque, int n, int level); /* vmport.c */ +#define TYPE_VMPORT "vmport" typedef uint32_t (VMPortReadFunc)(void *opaque, uint32_t address); static inline void vmport_init(ISABus *bus) { - isa_create_simple(bus, "vmport"); + isa_create_simple(bus, TYPE_VMPORT); } void vmport_register(unsigned char command, VMPortReadFunc *func, void *opaque); |
