xhci_pdriver.h 789 B

123456789101112131415161718192021222324252627
  1. /*
  2. * This program is free software; you can redistribute it and/or modify
  3. * it under the terms of the GNU General Public License version 2 as
  4. * published by the Free Software Foundation.
  5. *
  6. * This program is distributed in the hope that it will be useful, but
  7. * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  8. * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  9. * for more details.
  10. *
  11. */
  12. #ifndef __USB_CORE_XHCI_PDRIVER_H
  13. #define __USB_CORE_XHCI_PDRIVER_H
  14. /**
  15. * struct usb_xhci_pdata - platform_data for generic xhci platform driver
  16. *
  17. * @usb3_lpm_capable: determines if this xhci platform supports USB3
  18. * LPM capability
  19. *
  20. */
  21. struct usb_xhci_pdata {
  22. unsigned usb3_lpm_capable:1;
  23. };
  24. #endif /* __USB_CORE_XHCI_PDRIVER_H */