pc87312: Rename TYPE_PC87312_SUPERIO to TYPE_PC87312

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: Hervé Poussineau <hpoussin@reactos.org>
Message-Id: <20200902224311.1321159-21-ehabkost@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
stable-6.0
Eduardo Habkost 2020-09-02 18:42:28 -04:00
parent 01b4606440
commit b327066931
2 changed files with 3 additions and 3 deletions

View File

@ -371,7 +371,7 @@ static void pc87312_class_init(ObjectClass *klass, void *data)
}
static const TypeInfo pc87312_type_info = {
.name = TYPE_PC87312_SUPERIO,
.name = TYPE_PC87312,
.parent = TYPE_ISA_SUPERIO,
.instance_size = sizeof(PC87312State),
.instance_init = pc87312_initfn,

View File

@ -29,10 +29,10 @@
#include "qom/object.h"
#define TYPE_PC87312_SUPERIO "pc87312"
#define TYPE_PC87312 "pc87312"
typedef struct PC87312State PC87312State;
DECLARE_INSTANCE_CHECKER(PC87312State, PC87312,
TYPE_PC87312_SUPERIO)
TYPE_PC87312)
struct PC87312State {
/*< private >*/