diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2020-09-02 18:42:28 -0400 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2020-09-09 13:20:22 -0400 |
commit | b327066931827c71feea1f7f39a7608a6072364e (patch) | |
tree | e40e9b3f4534a9aebd6a5de9fe347383516149aa /include | |
parent | 01b4606440978e7c83082c1ebe4a811e3b1d8e83 (diff) | |
download | qemu-b327066931827c71feea1f7f39a7608a6072364e.zip qemu-b327066931827c71feea1f7f39a7608a6072364e.tar.gz qemu-b327066931827c71feea1f7f39a7608a6072364e.tar.bz2 |
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>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/isa/pc87312.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hw/isa/pc87312.h b/include/hw/isa/pc87312.h index a65168a..da8dc5d 100644 --- a/include/hw/isa/pc87312.h +++ b/include/hw/isa/pc87312.h @@ -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 >*/ |