Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/usbhub/usbhub_private.h

    rf9a0cef r10096231  
    182182}
    183183
    184 static inline int usb_hub_clear_port_feature(int hc, usb_address_t address,
    185     int port_index,
    186     usb_hub_class_feature_t feature) {
    187         usb_target_t target = {
    188                 .address = address,
    189                 .endpoint = 0
    190         };
    191         usb_device_request_setup_packet_t clear_request = {
    192                 .request_type = USB_HUB_REQ_TYPE_CLEAR_PORT_FEATURE,
    193                 .request = USB_DEVREQ_CLEAR_FEATURE,
    194                 .length = 0,
    195                 .index = port_index
    196         };
    197         clear_request.value = feature;
    198         return usb_drv_psync_control_write(hc, target, &clear_request,
    199             sizeof(clear_request), NULL, 0);
    200 }
    201 
    202184
    203185
Note: See TracChangeset for help on using the changeset viewer.