Changes in uspace/drv/usbhub/usbhub.c [58226b4:46e078a] in mainline
- File:
-
- 1 edited
-
uspace/drv/usbhub/usbhub.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhub/usbhub.c
r58226b4 r46e078a 179 179 } 180 180 181 /**182 * release default address used by given hub183 *184 * Also unsets hub->is_default_address_used. Convenience wrapper function.185 * @note hub->connection MUST be open for communication186 * @param hub hub representation187 * @return error code188 */189 int usb_hub_release_default_address(usb_hub_info_t * hub) {190 int opResult = usb_hc_release_default_address(&hub->connection);191 if (opResult != EOK) {192 usb_log_error("could not release default address, errno %d\n",193 opResult);194 return opResult;195 }196 hub->is_default_address_used = false;197 return EOK;198 }199 200 181 201 182 //********************************************* … … 266 247 for (port = 0; port < hub_info->port_count + 1; port++) { 267 248 usb_hub_port_init(&hub_info->ports[port]); 268 opResult = usb_hub_set_port_feature(hub_info->control_pipe,269 port, USB_HUB_FEATURE_PORT_POWER);270 if (opResult != EOK) {271 usb_log_error("cannot power on port %d; %d\n",272 port, opResult);273 }274 249 } 275 250 usb_log_debug2("freeing data\n");
Note:
See TracChangeset
for help on using the changeset viewer.
