diff options
author | Alexander Graf <agraf@suse.de> | 2010-12-08 12:05:49 +0100 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-12-11 15:24:26 +0000 |
commit | 968d683c042d80821a00a76608ae770a7401cac0 (patch) | |
tree | 90528f9386c5712a6a6c15de6b2a3eff5852a5f6 /hw/bonito.c | |
parent | b093c1a3277d4ce531a1a36f85dd542c60db3809 (diff) | |
download | qemu-968d683c042d80821a00a76608ae770a7401cac0.zip qemu-968d683c042d80821a00a76608ae770a7401cac0.tar.gz qemu-968d683c042d80821a00a76608ae770a7401cac0.tar.bz2 |
isa_mmio: Always use little endian
This patch converts the ISA MMIO bridge code to always use little endian mmio.
All bswap code that existed was only there to convert from native cpu
endianness to little endian ISA devices.
Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/bonito.c')
-rw-r--r-- | hw/bonito.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/bonito.c b/hw/bonito.c index fd90527..65a4a63 100644 --- a/hw/bonito.c +++ b/hw/bonito.c @@ -743,12 +743,12 @@ static int bonito_initfn(PCIDevice *dev) s->bonito_pciio_start = BONITO_PCIIO_BASE; s->bonito_pciio_length = BONITO_PCIIO_SIZE; isa_mem_base = s->bonito_pciio_start; - isa_mmio_init(s->bonito_pciio_start, s->bonito_pciio_length, 0); + isa_mmio_init(s->bonito_pciio_start, s->bonito_pciio_length); /* add pci local io mapping */ s->bonito_localio_start = BONITO_DEV_BASE; s->bonito_localio_length = BONITO_DEV_SIZE; - isa_mmio_init(s->bonito_localio_start, s->bonito_localio_length, 0); + isa_mmio_init(s->bonito_localio_start, s->bonito_localio_length); /* set the default value of north bridge pci config */ pci_set_word(dev->config + PCI_COMMAND, 0x0000); |