Lines Matching defs:event
367 struct usb_cdc_notification *event;
376 event = req->buf;
382 event->bNotificationType = USB_CDC_NOTIFY_NETWORK_CONNECTION;
384 event->wValue = cpu_to_le16(1);
386 event->wValue = cpu_to_le16(0);
387 event->wLength = 0;
388 req->length = sizeof *event;
396 event->bNotificationType = USB_CDC_NOTIFY_SPEED_CHANGE;
397 event->wValue = cpu_to_le16(0);
398 event->wLength = cpu_to_le16(8);
402 data = req->buf + sizeof *event;
410 event->bmRequestType = 0xA1;
411 event->wIndex = cpu_to_le16(ecm->ctrl_id);
436 struct usb_cdc_notification *event = req->buf;
449 DBG(cdev, "event %02x --> %d\n",
450 event->bNotificationType, req->status);