diff options
author | Eduardo Habkost | 2020-09-03 00:42:13 +0200 |
---|---|---|
committer | Eduardo Habkost | 2020-09-09 19:20:22 +0200 |
commit | fab2afff610800ab7023ec4d633195eb54223625 (patch) | |
tree | 9d760ceaf241ea9d34bb2600d6d2c68e208b1faa /include/hw | |
parent | gpex: Fix type checking function name (diff) | |
download | qemu-fab2afff610800ab7023ec4d633195eb54223625.tar.gz qemu-fab2afff610800ab7023ec4d633195eb54223625.tar.xz qemu-fab2afff610800ab7023ec4d633195eb54223625.zip |
ap-device: Rename AP_DEVICE_TYPE to TYPE_AP_DEVICE
This will make the type name constant consistent with the name of
the type checking macro.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20200902224311.1321159-6-ehabkost@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'include/hw')
-rw-r--r-- | include/hw/s390x/ap-device.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hw/s390x/ap-device.h b/include/hw/s390x/ap-device.h index fb250a20f3..e502745de5 100644 --- a/include/hw/s390x/ap-device.h +++ b/include/hw/s390x/ap-device.h @@ -14,7 +14,7 @@ #include "hw/qdev-core.h" #include "qom/object.h" -#define AP_DEVICE_TYPE "ap-device" +#define TYPE_AP_DEVICE "ap-device" struct APDevice { DeviceState parent_obj; @@ -22,6 +22,6 @@ struct APDevice { typedef struct APDevice APDevice; DECLARE_INSTANCE_CHECKER(APDevice, AP_DEVICE, - AP_DEVICE_TYPE) + TYPE_AP_DEVICE) #endif /* HW_S390X_AP_DEVICE_H */ |