mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
Fix qdev property type definition for isa serial/parallel devices
Use the correct qdev property type for these devices. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
2bc6f59b23
commit
51954d565f
2 changed files with 2 additions and 2 deletions
|
@ -587,7 +587,7 @@ static ISADeviceInfo parallel_isa_info = {
|
|||
.qdev.size = sizeof(ISAParallelState),
|
||||
.init = parallel_isa_initfn,
|
||||
.qdev.props = (Property[]) {
|
||||
DEFINE_PROP_HEX32("index", ISAParallelState, index, -1),
|
||||
DEFINE_PROP_UINT32("index", ISAParallelState, index, -1),
|
||||
DEFINE_PROP_HEX32("iobase", ISAParallelState, iobase, -1),
|
||||
DEFINE_PROP_UINT32("irq", ISAParallelState, isairq, 7),
|
||||
DEFINE_PROP_CHR("chardev", ISAParallelState, state.chr),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue