Blame view

kernel/linux-rt-4.4.41/include/linux/usb/xhci_pdriver.h 890 Bytes
5113f6f70   김현기   kernel add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  /*
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License version 2 as
   * published by the Free Software Foundation.
   *
   * This program is distributed in the hope that it will be useful, but
   * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
   * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
   * for more details.
   *
   */
  
  #ifndef __USB_CORE_XHCI_PDRIVER_H
  #define __USB_CORE_XHCI_PDRIVER_H
  
  /**
   * struct usb_xhci_pdata - platform_data for generic xhci platform driver
   *
   * @usb3_lpm_capable:	determines if this xhci platform supports USB3
   *			LPM capability
   * @quirk_port_broken_pe: If true, XHCI will not use Port Disable.
   *
   */
  struct usb_xhci_pdata {
  	unsigned	usb3_lpm_capable:1;
  	unsigned	quirk_port_broken_pe:1;
  };
  
  #endif /* __USB_CORE_XHCI_PDRIVER_H */