Changeset 9d06563 in mainline
- Timestamp:
- 2011-04-07T09:21:56Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a4e18e1
- Parents:
- 1c89f74
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhub/usbhub.c
r1c89f74 r9d06563 88 88 static void usb_hub_process_global_interrupt(usb_hub_info_t * hub_info); 89 89 90 static int initialize_non_removable(usb_hub_info_t * hub_info,91 unsigned int port);90 //static int initialize_non_removable(usb_hub_info_t * hub_info, 91 // unsigned int port); 92 92 93 93 static int usb_hub_trigger_connecting_non_removable_devices( … … 227 227 size_t port_count = hub_info->port_count; 228 228 //first check non-removable devices 229 /* 229 230 { 230 231 unsigned int port; … … 239 240 } 240 241 } 241 242 */ 242 243 243 244 /// FIXME: count properly … … 344 345 * these lines allow to reset hub once more, it can be used as 345 346 * brute-force initialization for non-removable devices 346 * /347 * 347 348 opResult = usb_request_set_configuration(hub_info->control_pipe, 348 349 1); … … 351 352 opResult); 352 353 return opResult; 353 } 354 }*/ 354 355 355 356 … … 879 880 * @return error code 880 881 */ 882 #if 0 881 883 static int initialize_non_removable(usb_hub_info_t * hub_info, 882 884 unsigned int port) { … … 918 920 return opResult; 919 921 } 920 922 #endif 921 923 /** 922 924 * triggers actions to connect non0removable devices
Note:
See TracChangeset
for help on using the changeset viewer.