You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

usb.h 598B

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