summaryrefslogtreecommitdiffstats
path: root/src/drivers/bus
diff options
context:
space:
mode:
authorMichael Brown2015-02-02 15:38:42 +0100
committerMichael Brown2015-02-03 13:19:52 +0100
commite17e771a135a8e452819a207937cbda1f1c17c91 (patch)
tree730e5300c6dd25c1da5b04118d1fe6e5077a2004 /src/drivers/bus
parent[usb] Add basic support for USB devices (diff)
downloadipxe-e17e771a135a8e452819a207937cbda1f1c17c91.tar.gz
ipxe-e17e771a135a8e452819a207937cbda1f1c17c91.tar.xz
ipxe-e17e771a135a8e452819a207937cbda1f1c17c91.zip
[usb] Add basic support for USB hubs
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/drivers/bus')
-rw-r--r--src/drivers/bus/usb.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/drivers/bus/usb.c b/src/drivers/bus/usb.c
index 5209c4d0..1e76ffc9 100644
--- a/src/drivers/bus/usb.c
+++ b/src/drivers/bus/usb.c
@@ -1646,3 +1646,6 @@ struct usb_port * usb_root_hub_port ( struct usb_device *usb ) {
return usb->port;
}
+
+/* Drag in hub driver */
+REQUIRE_OBJECT ( usbhub );