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>
This commit is contained in:
parent
755cfed007
commit
fab2afff61
@ -21,7 +21,7 @@ static void ap_class_init(ObjectClass *klass, void *data)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static const TypeInfo ap_device_info = {
|
static const TypeInfo ap_device_info = {
|
||||||
.name = AP_DEVICE_TYPE,
|
.name = TYPE_AP_DEVICE,
|
||||||
.parent = TYPE_DEVICE,
|
.parent = TYPE_DEVICE,
|
||||||
.instance_size = sizeof(APDevice),
|
.instance_size = sizeof(APDevice),
|
||||||
.class_size = sizeof(DeviceClass),
|
.class_size = sizeof(DeviceClass),
|
||||||
|
@ -177,7 +177,7 @@ static void vfio_ap_class_init(ObjectClass *klass, void *data)
|
|||||||
|
|
||||||
static const TypeInfo vfio_ap_info = {
|
static const TypeInfo vfio_ap_info = {
|
||||||
.name = VFIO_AP_DEVICE_TYPE,
|
.name = VFIO_AP_DEVICE_TYPE,
|
||||||
.parent = AP_DEVICE_TYPE,
|
.parent = TYPE_AP_DEVICE,
|
||||||
.instance_size = sizeof(VFIOAPDevice),
|
.instance_size = sizeof(VFIOAPDevice),
|
||||||
.class_init = vfio_ap_class_init,
|
.class_init = vfio_ap_class_init,
|
||||||
};
|
};
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
#include "hw/qdev-core.h"
|
#include "hw/qdev-core.h"
|
||||||
#include "qom/object.h"
|
#include "qom/object.h"
|
||||||
|
|
||||||
#define AP_DEVICE_TYPE "ap-device"
|
#define TYPE_AP_DEVICE "ap-device"
|
||||||
|
|
||||||
struct APDevice {
|
struct APDevice {
|
||||||
DeviceState parent_obj;
|
DeviceState parent_obj;
|
||||||
@ -22,6 +22,6 @@ struct APDevice {
|
|||||||
typedef struct APDevice APDevice;
|
typedef struct APDevice APDevice;
|
||||||
|
|
||||||
DECLARE_INSTANCE_CHECKER(APDevice, AP_DEVICE,
|
DECLARE_INSTANCE_CHECKER(APDevice, AP_DEVICE,
|
||||||
AP_DEVICE_TYPE)
|
TYPE_AP_DEVICE)
|
||||||
|
|
||||||
#endif /* HW_S390X_AP_DEVICE_H */
|
#endif /* HW_S390X_AP_DEVICE_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user