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