diff options
author | Efimov Vasily <real@ispras.ru> | 2016-06-22 15:24:47 +0300 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-06-29 14:03:45 +0200 |
commit | 936a6447c8dbb7bfeb41b1007394f8ee34e69d34 (patch) | |
tree | c6e3ede09151bdf82051bb3e623b774aba1302b6 /hw | |
parent | 873b4d3f0571a1e415cf089a67a230ea8a12d059 (diff) |
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 'hw')
-rw-r--r-- | hw/misc/vmport.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/misc/vmport.c b/hw/misc/vmport.c index 6896789801..c763811a9f 100644 --- a/hw/misc/vmport.c +++ b/hw/misc/vmport.c @@ -36,7 +36,6 @@ #define VMPORT_ENTRIES 0x2c #define VMPORT_MAGIC 0x564D5868 -#define TYPE_VMPORT "vmport" #define VMPORT(obj) OBJECT_CHECK(VMPortState, (obj), TYPE_VMPORT) typedef struct VMPortState |