Lines Matching refs:ctrl
73 TP_PROTO(struct usb_ctrlrequest *ctrl),
74 TP_ARGS(ctrl),
83 __entry->bRequestType = ctrl->bRequestType;
84 __entry->bRequest = ctrl->bRequest;
85 __entry->wValue = le16_to_cpu(ctrl->wValue);
86 __entry->wIndex = le16_to_cpu(ctrl->wIndex);
87 __entry->wLength = le16_to_cpu(ctrl->wLength);
97 TP_PROTO(struct usb_ctrlrequest *ctrl),
98 TP_ARGS(ctrl)
226 __field(u32, ctrl)
237 __entry->ctrl = trb->ctrl;
242 TP_printk("%s: trb %p (E%d:D%d) buf %08x%08x size %s%d ctrl %08x sofn %08x (%c%c%c%c:%c%c:%s)",
267 DWC3_TRB_SIZE_LENGTH(__entry->size), __entry->ctrl,
268 DWC3_TRB_CTRL_GET_SID_SOFN(__entry->ctrl),
269 __entry->ctrl & DWC3_TRB_CTRL_HWO ? 'H' : 'h',
270 __entry->ctrl & DWC3_TRB_CTRL_LST ? 'L' : 'l',
271 __entry->ctrl & DWC3_TRB_CTRL_CHN ? 'C' : 'c',
272 __entry->ctrl & DWC3_TRB_CTRL_CSP ? 'S' : 's',
273 __entry->ctrl & DWC3_TRB_CTRL_ISP_IMI ? 'S' : 's',
274 __entry->ctrl & DWC3_TRB_CTRL_IOC ? 'C' : 'c',
275 dwc3_trb_type_string(DWC3_TRBCTL_TYPE(__entry->ctrl))