diff mbox series

hw: edu: replace device name with macro

Message ID 1536901871-2729-1-git-send-email-liq3ea@gmail.com
State New
Headers show
Series hw: edu: replace device name with macro | expand

Commit Message

Li Qiang Sept. 14, 2018, 5:11 a.m. UTC
Just as other devices do.

Signed-off-by: Li Qiang <liq3ea@gmail.com>
---
 hw/misc/edu.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Comments

Paolo Bonzini Sept. 14, 2018, 3:09 p.m. UTC | #1
On 14/09/2018 07:11, Li Qiang wrote:
> Just as other devices do.
> 
> Signed-off-by: Li Qiang <liq3ea@gmail.com>
> ---
>  hw/misc/edu.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/hw/misc/edu.c b/hw/misc/edu.c
> index df26a4d046..0687ffd343 100644
> --- a/hw/misc/edu.c
> +++ b/hw/misc/edu.c
> @@ -30,7 +30,8 @@
>  #include "qemu/main-loop.h" /* iothread mutex */
>  #include "qapi/visitor.h"
>  
> -#define EDU(obj)        OBJECT_CHECK(EduState, obj, "edu")
> +#define TYPE_PCI_EDU_DEVICE "edu"
> +#define EDU(obj)        OBJECT_CHECK(EduState, obj, TYPE_PCI_EDU_DEVICE)
>  
>  #define FACT_IRQ        0x00000001
>  #define DMA_IRQ         0x00000100
> @@ -414,7 +415,7 @@ static void pci_edu_register_types(void)
>          { },
>      };
>      static const TypeInfo edu_info = {
> -        .name          = "edu",
> +        .name          = TYPE_PCI_EDU_DEVICE,
>          .parent        = TYPE_PCI_DEVICE,
>          .instance_size = sizeof(EduState),
>          .instance_init = edu_instance_init,
> 

Queued, thanks.

Paolo
diff mbox series

Patch

diff --git a/hw/misc/edu.c b/hw/misc/edu.c
index df26a4d046..0687ffd343 100644
--- a/hw/misc/edu.c
+++ b/hw/misc/edu.c
@@ -30,7 +30,8 @@ 
 #include "qemu/main-loop.h" /* iothread mutex */
 #include "qapi/visitor.h"
 
-#define EDU(obj)        OBJECT_CHECK(EduState, obj, "edu")
+#define TYPE_PCI_EDU_DEVICE "edu"
+#define EDU(obj)        OBJECT_CHECK(EduState, obj, TYPE_PCI_EDU_DEVICE)
 
 #define FACT_IRQ        0x00000001
 #define DMA_IRQ         0x00000100
@@ -414,7 +415,7 @@  static void pci_edu_register_types(void)
         { },
     };
     static const TypeInfo edu_info = {
-        .name          = "edu",
+        .name          = TYPE_PCI_EDU_DEVICE,
         .parent        = TYPE_PCI_DEVICE,
         .instance_size = sizeof(EduState),
         .instance_init = edu_instance_init,