mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
qdev: Remove hex8/32/64 property types
Replace them with uint8/32/64. Reviewed-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
515f23462b
commit
c7bcc85d66
34 changed files with 54 additions and 90 deletions
|
@ -123,9 +123,9 @@ static const VMStateDescription vmstate_pic_common = {
|
|||
};
|
||||
|
||||
static Property pic_properties_common[] = {
|
||||
DEFINE_PROP_HEX32("iobase", PICCommonState, iobase, -1),
|
||||
DEFINE_PROP_HEX32("elcr_addr", PICCommonState, elcr_addr, -1),
|
||||
DEFINE_PROP_HEX8("elcr_mask", PICCommonState, elcr_mask, -1),
|
||||
DEFINE_PROP_UINT32("iobase", PICCommonState, iobase, -1),
|
||||
DEFINE_PROP_UINT32("elcr_addr", PICCommonState, elcr_addr, -1),
|
||||
DEFINE_PROP_UINT8("elcr_mask", PICCommonState, elcr_mask, -1),
|
||||
DEFINE_PROP_BIT("master", PICCommonState, master, 0, false),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue