[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 22/29] hw/gpio/mpc8xxx: Prefer DEFINE_TYPES() macro
From: |
Philippe Mathieu-Daudé |
Subject: |
[PULL 22/29] hw/gpio/mpc8xxx: Prefer DEFINE_TYPES() macro |
Date: |
Tue, 5 Nov 2024 22:47:20 +0000 |
From: Bernhard Beschow <shentey@gmail.com>
Reviewed-by: Cédric Le Goater <clg@redhat.com>
Signed-off-by: Bernhard Beschow <shentey@gmail.com>
Message-ID: <20241103133412.73536-18-shentey@gmail.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
hw/gpio/mpc8xxx.c | 22 +++++++++-------------
1 file changed, 9 insertions(+), 13 deletions(-)
diff --git a/hw/gpio/mpc8xxx.c b/hw/gpio/mpc8xxx.c
index 63b7a5c881d..a3c1d2fbf4c 100644
--- a/hw/gpio/mpc8xxx.c
+++ b/hw/gpio/mpc8xxx.c
@@ -23,7 +23,6 @@
#include "hw/irq.h"
#include "hw/sysbus.h"
#include "migration/vmstate.h"
-#include "qemu/module.h"
#include "qom/object.h"
#define TYPE_MPC8XXX_GPIO "mpc8xxx_gpio"
@@ -208,17 +207,14 @@ static void mpc8xxx_gpio_class_init(ObjectClass *klass,
void *data)
device_class_set_legacy_reset(dc, mpc8xxx_gpio_reset);
}
-static const TypeInfo mpc8xxx_gpio_info = {
- .name = TYPE_MPC8XXX_GPIO,
- .parent = TYPE_SYS_BUS_DEVICE,
- .instance_size = sizeof(MPC8XXXGPIOState),
- .instance_init = mpc8xxx_gpio_initfn,
- .class_init = mpc8xxx_gpio_class_init,
+static const TypeInfo mpc8xxx_gpio_types[] = {
+ {
+ .name = TYPE_MPC8XXX_GPIO,
+ .parent = TYPE_SYS_BUS_DEVICE,
+ .instance_size = sizeof(MPC8XXXGPIOState),
+ .instance_init = mpc8xxx_gpio_initfn,
+ .class_init = mpc8xxx_gpio_class_init,
+ },
};
-static void mpc8xxx_gpio_register_types(void)
-{
- type_register_static(&mpc8xxx_gpio_info);
-}
-
-type_init(mpc8xxx_gpio_register_types)
+DEFINE_TYPES(mpc8xxx_gpio_types)
--
2.45.2
- [PULL 12/29] hw/ppc/e500: Prefer QOM cast, (continued)
- [PULL 12/29] hw/ppc/e500: Prefer QOM cast, Philippe Mathieu-Daudé, 2024/11/05
- [PULL 13/29] hw/ppc/e500: Remove unused "irqs" parameter, Philippe Mathieu-Daudé, 2024/11/05
- [PULL 14/29] hw/ppc/e500: Add missing device tree properties to i2c controller node, Philippe Mathieu-Daudé, 2024/11/05
- [PULL 15/29] hw/ppc/mpc8544_guts: Populate POR PLL ratio status register, Philippe Mathieu-Daudé, 2024/11/05
- [PULL 17/29] hw/i2c/mpc_i2c: Prefer DEFINE_TYPES() macro, Philippe Mathieu-Daudé, 2024/11/05
- [PULL 18/29] hw/pci-host/ppce500: Reuse TYPE_PPC_E500_PCI_BRIDGE define, Philippe Mathieu-Daudé, 2024/11/05
- [PULL 21/29] hw/net/fsl_etsec/etsec: Prefer DEFINE_TYPES() macro, Philippe Mathieu-Daudé, 2024/11/05
- [PULL 16/29] hw/i2c/mpc_i2c: Convert DPRINTF to trace events for register access, Philippe Mathieu-Daudé, 2024/11/05
- [PULL 19/29] hw/pci-host/ppce500: Prefer DEFINE_TYPES() macro, Philippe Mathieu-Daudé, 2024/11/05
- [PULL 20/29] hw/net/fsl_etsec/miim: Reuse MII constants, Philippe Mathieu-Daudé, 2024/11/05
- [PULL 22/29] hw/gpio/mpc8xxx: Prefer DEFINE_TYPES() macro,
Philippe Mathieu-Daudé <=
- [PULL 23/29] hw/ppc/mpc8544_guts: Prefer DEFINE_TYPES() macro, Philippe Mathieu-Daudé, 2024/11/05
- [PULL 24/29] hw/sd/sdhci: Prefer DEFINE_TYPES() macro, Philippe Mathieu-Daudé, 2024/11/05
- [PULL 26/29] hw/i2c/smbus_eeprom: Prefer DEFINE_TYPES() macro, Philippe Mathieu-Daudé, 2024/11/05
- [PULL 25/29] hw/block/pflash_cfi01: Prefer DEFINE_TYPES() macro, Philippe Mathieu-Daudé, 2024/11/05
- [PULL 28/29] hw/usb/hcd-ehci-sysbus: Prefer DEFINE_TYPES() macro, Philippe Mathieu-Daudé, 2024/11/05
- [PULL 29/29] hw/riscv/iommu: fix build error with clang, Philippe Mathieu-Daudé, 2024/11/05
- [PULL 27/29] hw/rtc/ds1338: Prefer DEFINE_TYPES() macro, Philippe Mathieu-Daudé, 2024/11/05