summaryrefslogtreecommitdiffstats
path: root/hw/usb-ohci.c
diff options
context:
space:
mode:
authorpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2007-06-03 15:19:33 +0000
committerpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2007-06-03 15:19:33 +0000
commit187337f8b0ec0813dd3876d1efe37d415fb81c2e (patch)
tree09fd89eaffd65ea952a407b843599f3d1a13ad63 /hw/usb-ohci.c
parent1bc012f65a9b269ec373ca7586032c205d112d8a (diff)
downloadhqemu-187337f8b0ec0813dd3876d1efe37d415fb81c2e.zip
hqemu-187337f8b0ec0813dd3876d1efe37d415fb81c2e.tar.gz
Fix off-by-one memory region sizes.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2931 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/usb-ohci.c')
-rw-r--r--hw/usb-ohci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb-ohci.c b/hw/usb-ohci.c
index 6808579..99e072f 100644
--- a/hw/usb-ohci.c
+++ b/hw/usb-ohci.c
@@ -1345,5 +1345,5 @@ void usb_ohci_init_pxa(target_phys_addr_t base, int num_ports, int devfn,
OHCI_TYPE_PXA, "OHCI USB");
ohci->mem_base = base;
- cpu_register_physical_memory(ohci->mem_base, 0xfff, ohci->mem);
+ cpu_register_physical_memory(ohci->mem_base, 0x1000, ohci->mem);
}
OpenPOWER on IntegriCloud