On Fri, Aug 06 2021, Eduardo Habkost <[email protected]> wrote: > Converting existing QOM types to OBJECT_DECLARE_TYPE is not > always trivial (due to inconsistent type/macro naming schemes), > but at least converting existing manual QOM type checking macros > to use DECLARE_*CHECKER* is a simpler process, and should at > least discourage people from defining new QOM type checker macros > manually. > > Generated using: > > $ ./scripts/codeconverter/converter.py -i \ > --pattern=TypeCheckMacro $(git grep -l '' -- '*.[ch]') > > Signed-off-by: Eduardo Habkost <[email protected]> > --- > Cc: "Marc-André Lureau" <[email protected]> > Cc: Paolo Bonzini <[email protected]> > Cc: Patrick Venture <[email protected]> > Cc: Thomas Huth <[email protected]> > Cc: "Michael S. Tsirkin" <[email protected]> > Cc: Igor Mammedov <[email protected]> > Cc: Alexander Bulekov <[email protected]> > Cc: Bandan Das <[email protected]> > Cc: Stefan Hajnoczi <[email protected]> > Cc: Keith Busch <[email protected]> > Cc: Klaus Jensen <[email protected]> > Cc: Cornelia Huck <[email protected]> > Cc: Halil Pasic <[email protected]> > Cc: Christian Borntraeger <[email protected]> > Cc: Richard Henderson <[email protected]> > Cc: David Hildenbrand <[email protected]> > Cc: Gerd Hoffmann <[email protected]> > Cc: Havard Skinnemoen <[email protected]> > Cc: Tyrone Ting <[email protected]> > Cc: Vijai Kumar K <[email protected]> > Cc: Alistair Francis <[email protected]> > Cc: Bin Meng <[email protected]> > Cc: Palmer Dabbelt <[email protected]> > Cc: "Edgar E. Iglesias" <[email protected]> > Cc: Peter Maydell <[email protected]> > Cc: Laurent Vivier <[email protected]> > Cc: "Cédric Le Goater" <[email protected]> > Cc: Andrew Jeffery <[email protected]> > Cc: Joel Stanley <[email protected]> > Cc: Jason Wang <[email protected]> > Cc: Vikram Garhwal <[email protected]> > Cc: Francisco Iglesias <[email protected]> > Cc: David Gibson <[email protected]> > Cc: Greg Kurz <[email protected]> > Cc: Bastian Koppelmann <[email protected]> > Cc: Taylor Simpson <[email protected]> > Cc: [email protected] > Cc: [email protected] > Cc: [email protected] > Cc: [email protected] > Cc: [email protected] > Cc: [email protected] > --- > hw/nvme/nvme.h | 12 ++++++------ > hw/usb/hcd-xhci-pci.h | 4 ++-- > hw/usb/hcd-xhci-sysbus.h | 4 ++-- > hw/usb/u2f.h | 8 ++------ > include/hw/adc/npcm7xx_adc.h | 4 ++-- > include/hw/arm/npcm7xx.h | 15 ++++----------- > include/hw/char/shakti_uart.h | 4 ++-- > include/hw/dma/sifive_pdma.h | 4 ++-- > include/hw/dma/xlnx_csu_dma.h | 4 ++-- > include/hw/gpio/npcm7xx_gpio.h | 4 ++-- > include/hw/i2c/npcm7xx_smbus.h | 4 ++-- > include/hw/intc/m68k_irqc.h | 4 ++-- > include/hw/intc/sifive_clint.h | 4 ++-- > include/hw/mem/npcm7xx_mc.h | 3 ++- > include/hw/misc/aspeed_lpc.h | 3 ++- > include/hw/misc/mchp_pfsoc_dmc.h | 10 ++++------ > include/hw/misc/mchp_pfsoc_ioscb.h | 4 ++-- > include/hw/misc/mchp_pfsoc_sysreg.h | 5 ++--- > include/hw/misc/npcm7xx_clk.h | 3 ++- > include/hw/misc/npcm7xx_gcr.h | 3 ++- > include/hw/misc/npcm7xx_mft.h | 4 ++-- > include/hw/misc/npcm7xx_pwm.h | 4 ++-- > include/hw/misc/npcm7xx_rng.h | 3 ++- > include/hw/misc/xlnx-versal-xramc.h | 4 ++-- > include/hw/net/npcm7xx_emc.h | 4 ++-- > include/hw/net/xlnx-zynqmp-can.h | 4 ++-- > include/hw/nvram/npcm7xx_otp.h | 3 ++- > include/hw/ppc/spapr_drc.h | 13 ++++--------- > include/hw/ppc/spapr_xive.h | 7 ++----- > include/hw/riscv/microchip_pfsoc.h | 9 ++++----- > include/hw/riscv/shakti_c.h | 8 ++++---- > include/hw/riscv/sifive_e.h | 8 ++++---- > include/hw/riscv/sifive_u.h | 8 ++++---- > include/hw/sd/cadence_sdhci.h | 4 ++-- > include/hw/ssi/npcm7xx_fiu.h | 3 ++- > include/hw/ssi/sifive_spi.h | 3 ++- > include/hw/timer/npcm7xx_timer.h | 4 ++-- > include/hw/tricore/tricore_testdevice.h | 4 ++-- > include/hw/usb/hcd-dwc3.h | 4 ++-- > include/hw/usb/xlnx-usb-subsystem.h | 4 ++-- > include/hw/usb/xlnx-versal-usb2-ctrl-regs.h | 4 ++-- > include/hw/watchdog/sbsa_gwdt.h | 4 ++-- > include/qemu/accel.h | 8 ++------ > target/hexagon/cpu.h | 8 ++------ > chardev/char-parallel.c | 6 ++---- > hw/i2c/i2c_mux_pca954x.c | 4 ++-- > hw/m68k/mcf5206.c | 3 ++- > hw/mem/sparse-mem.c | 3 ++- > hw/misc/sbsa_ec.c | 3 ++- > hw/s390x/vhost-user-fs-ccw.c | 4 ++-- > hw/sensor/adm1272.c | 3 ++- > hw/sensor/max34451.c | 3 ++- > hw/usb/u2f-emulated.c | 4 ++-- > hw/usb/u2f-passthru.c | 4 ++-- > 54 files changed, 126 insertions(+), 146 deletions(-)
Acked-by: Cornelia Huck <[email protected]>
