diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-03-17 16:59:31 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-03-17 16:59:31 +0000 |
commit | e24ad6f140f23e1edc1646ea248819698b77f0e2 (patch) | |
tree | 090b4bd85ed9c7462ae4c1f49062a14502b750a7 /hw/usb.h | |
parent | 60a9f9ecd90ae4921e919323ecd9ab59e71e71f5 (diff) |
OHCI USB PXA support (Andrzej Zaborowski).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2490 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/usb.h')
-rw-r--r-- | hw/usb.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -206,7 +206,9 @@ USBDevice *usb_hub_init(int nb_ports); void usb_uhci_init(PCIBus *bus, int devfn); /* usb-ohci.c */ -void usb_ohci_init(struct PCIBus *bus, int num_ports, int devfn); +void usb_ohci_init_pci(struct PCIBus *bus, int num_ports, int devfn); +void usb_ohci_init_pxa(target_phys_addr_t base, int num_ports, int devfn, + void *pic, int irq); /* usb-linux.c */ USBDevice *usb_host_device_open(const char *devname); |