diff options
author | Michael Brown <mcb30@ipxe.org> | 2015-02-02 14:40:06 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2015-02-03 12:33:28 +0000 |
commit | fd53ada87cc3b715738e01d5470829b9948c1e09 (patch) | |
tree | 9d61593756103fff88b190647dbdae5416491f71 /src/config/config_usb.c | |
parent | e17e771a135a8e452819a207937cbda1f1c17c91 (diff) | |
download | ipxe-fd53ada87cc3b715738e01d5470829b9948c1e09.tar.gz |
[usb] Add support for xHCI host controllers
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config/config_usb.c')
-rw-r--r-- | src/config/config_usb.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config/config_usb.c b/src/config/config_usb.c index 9a714b24f..789bc5060 100644 --- a/src/config/config_usb.c +++ b/src/config/config_usb.c @@ -18,3 +18,6 @@ FILE_LICENCE ( GPL2_OR_LATER ); /* * Drag in USB controllers */ +#ifdef USB_HCD_XHCI +REQUIRE_OBJECT ( xhci ); +#endif |