diff options
| author | Andreas Färber <andreas.faerber@web.de> | 2012-01-13 18:03:48 +0100 |
|---|---|---|
| committer | Andreas Färber <andreas.faerber@web.de> | 2012-01-20 00:27:12 +0100 |
| commit | 48e937283af85aedb7d974a774c7c6bf21794b24 (patch) | |
| tree | d6b1e6e691498347a49952746952bd02f2795a64 | |
| parent | 809680c017b944676a34d2712560da61895f4a6d (diff) | |
| download | focaccia-qemu-48e937283af85aedb7d974a774c7c6bf21794b24.tar.gz focaccia-qemu-48e937283af85aedb7d974a774c7c6bf21794b24.zip | |
prep: Use ISA m48t59
This simplifies the code later when the i8259 moves to the i82378 PCI->ISA bridge and happens to fix a SysBus m48t59 io_base issue introduced by commit 0fb56ffc5edd66f12ccfc0d71af5f9c79c0a2612 (m48t59: drop obsolete address base arithmetic). Suggested by Hervé and Jan. Signed-off-by: Andreas Färber <andreas.faerber@web.de> Cc: Hervé Poussineau <hpoussin@reactos.org> Cc: Jan Kiszka <jan.kiszka@siemens.com> Cc: Blue Swirl <blauwirbel@gmail.com>
| -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 dec059a685..1cc0ae01f6 100644 --- a/hw/ppc_prep.c +++ b/hw/ppc_prep.c @@ -707,7 +707,7 @@ static void ppc_prep_init (ram_addr_t ram_size, usb_ohci_init_pci(pci_bus, -1); } - m48t59 = m48t59_init(i8259[8], 0, 0x0074, NVRAM_SIZE, 59); + m48t59 = m48t59_init_isa(isa_bus, 0x0074, NVRAM_SIZE, 59); if (m48t59 == NULL) return; sysctrl->nvram = m48t59; |