diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2009-09-22 13:53:22 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-05 09:32:47 -0500 |
commit | 021f06745901acb7d09ac3aff4aea52495cae730 (patch) | |
tree | 441c80b118278998033a84fb81537cde71722495 /hw/sun4u.c | |
parent | update pc-bios/bios.bin (diff) | |
download | qemu-kvm-021f06745901acb7d09ac3aff4aea52495cae730.tar.gz qemu-kvm-021f06745901acb7d09ac3aff4aea52495cae730.tar.bz2 qemu-kvm-021f06745901acb7d09ac3aff4aea52495cae730.zip |
parallel: convert isa to qdev
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/sun4u.c')
-rw-r--r-- | hw/sun4u.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/sun4u.c b/hw/sun4u.c index 2c97d9d70..e4097b43a 100644 --- a/hw/sun4u.c +++ b/hw/sun4u.c @@ -610,8 +610,7 @@ static void sun4uv_init(ram_addr_t RAM_size, for(i = 0; i < MAX_PARALLEL_PORTS; i++) { if (parallel_hds[i]) { - parallel_init(parallel_io[i], NULL/*parallel_irq[i]*/, - parallel_hds[i]); + parallel_init(i, parallel_hds[i]); } } |