From e1feb7bcab139a9b1114b8cc9e081d1144f53d75 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Wed, 18 Mar 2015 11:37:51 +0000 Subject: [PATCH] [usb] Add config/usb.h for USB configuration options Signed-off-by: Michael Brown --- src/config/config_usb.c | 2 +- src/config/usb.h | 25 +++++++++++++++++++++++++ src/config/vbox/usb.h | 0 3 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 src/config/usb.h create mode 100644 src/config/vbox/usb.h diff --git a/src/config/config_usb.c b/src/config/config_usb.c index 30aa06c1..0251b282 100644 --- a/src/config/config_usb.c +++ b/src/config/config_usb.c @@ -21,7 +21,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); -#include +#include /** @file * diff --git a/src/config/usb.h b/src/config/usb.h new file mode 100644 index 00000000..ad8b3b72 --- /dev/null +++ b/src/config/usb.h @@ -0,0 +1,25 @@ +#ifndef CONFIG_USB_H +#define CONFIG_USB_H + +/** @file + * + * USB configuration + * + */ + +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); + +#include + +/* + * USB host controllers (all enabled by default) + * + */ +//#undef USB_HCD_XHCI /* xHCI USB host controller */ + +#include +#include NAMED_CONFIG(usb.h) +#include +#include LOCAL_NAMED_CONFIG(usb.h) + +#endif /* CONFIG_USB_H */ diff --git a/src/config/vbox/usb.h b/src/config/vbox/usb.h new file mode 100644 index 00000000..e69de29b