Changeset 82122f3 in mainline for uspace/drv/usbhub/usbhub_private.h
- Timestamp:
- 2010-12-17T14:51:41Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1f383dde
- Parents:
- 692f13e4 (diff), 11658b64 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhub/usbhub_private.h
r692f13e4 r82122f3 182 182 } 183 183 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 184 202 185 203
Note:
See TracChangeset
for help on using the changeset viewer.