Lines Matching defs:usb_device
652 struct usb_device { struct
656 enum usb_device_state state; argument
657 enum usb_device_speed speed; argument
667 struct usb_device *parent; argument
673 struct usb_device_descriptor descriptor; argument
674 struct usb_host_bos *bos;
675 struct usb_host_config *config;
677 struct usb_host_config *actconfig;
678 struct usb_host_endpoint *ep_in[16];
679 struct usb_host_endpoint *ep_out[16];
681 char **rawdescriptors;
683 unsigned short bus_mA;
684 u8 portnum;
685 u8 level;
686 u8 devaddr;
688 unsigned can_submit:1;
689 unsigned persist_enabled:1;
690 unsigned reset_in_progress:1;
691 unsigned have_langid:1;
692 unsigned authorized:1;
693 unsigned authenticated:1;
694 unsigned lpm_capable:1;
695 unsigned lpm_devinit_allow:1;
696 unsigned usb2_hw_lpm_capable:1;
697 unsigned usb2_hw_lpm_besl_capable:1;
698 unsigned usb2_hw_lpm_enabled:1;
699 unsigned usb2_hw_lpm_allowed:1;
700 unsigned usb3_lpm_u1_enabled:1;
701 unsigned usb3_lpm_u2_enabled:1;
702 int string_langid;
705 char *product;
706 char *manufacturer;
707 char *serial;
709 struct list_head filelist;
734 #define to_usb_device(__dev) container_of_const(__dev, struct usb_device, dev) argument