diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2010-12-01 11:08:44 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2011-01-11 17:01:02 +0100 |
commit | 0d86d2bebb625a222f70b76972139f6a272e3e0b (patch) | |
tree | 2f8763d0041b82f41ef9b14ab6e5529a3c4b6e71 /hw/usb-ohci.c | |
parent | ed5a83ddd8c1d8ec7b1015315530cf29949e7c48 (diff) | |
download | qemu-0d86d2bebb625a222f70b76972139f6a272e3e0b.tar.gz qemu-0d86d2bebb625a222f70b76972139f6a272e3e0b.tar.bz2 qemu-0d86d2bebb625a222f70b76972139f6a272e3e0b.zip |
usb: create USBPortOps, move attach there.
Create USBPortOps struct, move the attach function to that struct.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/usb-ohci.c')
-rw-r--r-- | hw/usb-ohci.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hw/usb-ohci.c b/hw/usb-ohci.c index 240e8409af..7b13bdd0d3 100644 --- a/hw/usb-ohci.c +++ b/hw/usb-ohci.c @@ -1669,6 +1669,10 @@ static CPUWriteMemoryFunc * const ohci_writefn[3]={ ohci_mem_write }; +static USBPortOps ohci_port_ops = { + .attach = ohci_attach, +}; + static void usb_ohci_init(OHCIState *ohci, DeviceState *dev, int num_ports, uint32_t localmem_base) { @@ -1699,7 +1703,7 @@ static void usb_ohci_init(OHCIState *ohci, DeviceState *dev, usb_bus_new(&ohci->bus, dev); ohci->num_ports = num_ports; for (i = 0; i < num_ports; i++) { - usb_register_port(&ohci->bus, &ohci->rhport[i].port, ohci, i, NULL, ohci_attach); + usb_register_port(&ohci->bus, &ohci->rhport[i].port, ohci, i, NULL, &ohci_port_ops); } ohci->async_td = 0; |