qemu-e2k/hw/ipmi
Marc-André Lureau 4f67d30b5e qdev: set properties with device_class_set_props()
The following patch will need to handle properties registration during
class_init time. Let's use a device_class_set_props() setter.

spatch --macro-file scripts/cocci-macro-file.h  --sp-file
./scripts/coccinelle/qdev-set-props.cocci --keep-comments --in-place
--dir .

@@
typedef DeviceClass;
DeviceClass *d;
expression val;
@@
- d->props = val
+ device_class_set_props(d, val)

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20200110153039.1379601-20-marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2020-01-24 20:59:15 +01:00
..
Kconfig ipmi: Add an SMBus IPMI interface 2019-09-20 14:08:10 -05:00
Makefile.objs ipmi: Add an SMBus IPMI interface 2019-09-20 14:08:10 -05:00
ipmi.c qdev: set properties with device_class_set_props() 2020-01-24 20:59:15 +01:00
ipmi_bmc_extern.c qdev: set properties with device_class_set_props() 2020-01-24 20:59:15 +01:00
ipmi_bmc_sim.c qdev: set properties with device_class_set_props() 2020-01-24 20:59:15 +01:00
ipmi_bt.c ipmi: Allow a size value to be passed for I/O space 2019-09-20 14:08:10 -05:00
ipmi_kcs.c ipmi: Allow a size value to be passed for I/O space 2019-09-20 14:08:10 -05:00
isa_ipmi_bt.c qdev: set properties with device_class_set_props() 2020-01-24 20:59:15 +01:00
isa_ipmi_kcs.c qdev: set properties with device_class_set_props() 2020-01-24 20:59:15 +01:00
pci_ipmi_bt.c hw/ipmi: Fix realize() error API violations 2019-12-18 08:36:15 +01:00
pci_ipmi_kcs.c hw/ipmi: Fix realize() error API violations 2019-12-18 08:36:15 +01:00
smbus_ipmi.c ipmi: Add an SMBus IPMI interface 2019-09-20 14:08:10 -05:00