diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2009-09-10 11:43:26 +0200 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2009-09-10 19:47:58 +0400 |
commit | 86c861578453b544fa67ad50d28c4460bee068c5 (patch) | |
tree | 639b1de76d4c0fdbd8ae2501da3288bc62ae28ce /hw/ppc_prep.c | |
parent | 316940b06273c43ec8d58fcb0908267f7fa5d333 (diff) |
qdev: drop iobase properties from isa bus
Lot of ISA devices work at fixed addresses, so having iobase
as bus property doesn't make much sense. Devices which can
have different iobases will get a device property.
Also simply hard-code stuff which can't be configured anyway.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/ppc_prep.c')
-rw-r--r-- | hw/ppc_prep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc_prep.c b/hw/ppc_prep.c index 8ba434d06d..927d4040ab 100644 --- a/hw/ppc_prep.c +++ b/hw/ppc_prep.c @@ -719,7 +719,7 @@ static void ppc_prep_init (ram_addr_t ram_size, dinfo = drive_get(IF_FLOPPY, 0, i); fd[i] = dinfo ? dinfo->bdrv : NULL; } - fdctrl_init_isa(6, 2, 0x3f0, fd); + fdctrl_init_isa(fd); /* Register speaker port */ register_ioport_read(0x61, 1, 1, speaker_ioport_read, NULL); |