summaryrefslogtreecommitdiff
path: root/hw/usb-bus.c
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2011-06-30 11:57:57 +0200
committerGerd Hoffmann <kraxel@redhat.com>2011-07-05 15:09:01 +0200
commit090ac6425accf5d87be5ff8087080c876a2904e5 (patch)
tree7cfad5b3461873a7059069b031dd05b3af181a6f /hw/usb-bus.c
parent000eb4fa525d0b9b2d2b2a2ad4925863af60e5f7 (diff)
downloadqemu-090ac6425accf5d87be5ff8087080c876a2904e5.tar.gz
usb: Add a usb_fill_port helper function
Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/usb-bus.c')
-rw-r--r--hw/usb-bus.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/hw/usb-bus.c b/hw/usb-bus.c
index 2abce12de5..776974e6cf 100644
--- a/hw/usb-bus.c
+++ b/hw/usb-bus.c
@@ -140,8 +140,8 @@ USBDevice *usb_create_simple(USBBus *bus, const char *name)
return dev;
}
-void usb_register_port(USBBus *bus, USBPort *port, void *opaque, int index,
- USBPortOps *ops, int speedmask)
+static void usb_fill_port(USBPort *port, void *opaque, int index,
+ USBPortOps *ops, int speedmask)
{
port->opaque = opaque;
port->index = index;
@@ -149,6 +149,12 @@ void usb_register_port(USBBus *bus, USBPort *port, void *opaque, int index,
port->index = index;
port->ops = ops;
port->speedmask = speedmask;
+}
+
+void usb_register_port(USBBus *bus, USBPort *port, void *opaque, int index,
+ USBPortOps *ops, int speedmask)
+{
+ usb_fill_port(port, opaque, index, ops, speedmask);
QTAILQ_INSERT_TAIL(&bus->free, port, next);
bus->nfree++;
}