diff options
author | Michael Brown <mcb30@ipxe.org> | 2015-03-15 01:01:08 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2015-03-18 12:35:17 +0000 |
commit | 8370f877450b4ca35a758222a8062c3f3062fd18 (patch) | |
tree | c957434fd2389ee733b596c3b7d207c7fa3b846e /src/config/config_usb.c | |
parent | ec0e2a7bd77c3021bb492ccb78855482312bca4b (diff) | |
download | ipxe-8370f877450b4ca35a758222a8062c3f3062fd18.tar.gz |
[ehci] Add support for EHCI 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 0251b282..a62d695e 100644 --- a/src/config/config_usb.c +++ b/src/config/config_usb.c @@ -37,3 +37,6 @@ PROVIDE_REQUIRING_SYMBOL(); #ifdef USB_HCD_XHCI REQUIRE_OBJECT ( xhci ); #endif +#ifdef USB_HCD_EHCI +REQUIRE_OBJECT ( ehci ); +#endif |