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 417B

12345678910111213141516171819202122232425
  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. #include <config/named.h>
  16. #include NAMED_CONFIG(usb.h)
  17. #include <config/local/usb.h>
  18. #include LOCAL_NAMED_CONFIG(usb.h)
  19. #endif /* CONFIG_USB_H */