|
@@ -0,0 +1,25 @@
|
|
1
|
+#ifndef CONFIG_USB_H
|
|
2
|
+#define CONFIG_USB_H
|
|
3
|
+
|
|
4
|
+/** @file
|
|
5
|
+ *
|
|
6
|
+ * USB configuration
|
|
7
|
+ *
|
|
8
|
+ */
|
|
9
|
+
|
|
10
|
+FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
|
|
11
|
+
|
|
12
|
+#include <config/defaults.h>
|
|
13
|
+
|
|
14
|
+/*
|
|
15
|
+ * USB host controllers (all enabled by default)
|
|
16
|
+ *
|
|
17
|
+ */
|
|
18
|
+//#undef USB_HCD_XHCI /* xHCI USB host controller */
|
|
19
|
+
|
|
20
|
+#include <config/named.h>
|
|
21
|
+#include NAMED_CONFIG(usb.h)
|
|
22
|
+#include <config/local/usb.h>
|
|
23
|
+#include LOCAL_NAMED_CONFIG(usb.h)
|
|
24
|
+
|
|
25
|
+#endif /* CONFIG_USB_H */
|