Changeset d7f3040 in mainline
- Timestamp:
- 2011-04-07T07:44:21Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1c89f74
- Parents:
- e5ccfd1
- Location:
- uspace/drv/usbhub
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhub/port_status.h
re5ccfd1 rd7f3040 257 257 */ 258 258 static inline bool usb_port_get_bit(usb_port_status_t * status, int idx) { 259 return ( *status)&(1 << idx);259 return ((*status)&(1 << idx))!=0; 260 260 } 261 261 -
uspace/drv/usbhub/usbhub.c
re5ccfd1 rd7f3040 229 229 { 230 230 unsigned int port; 231 for (port = 1; port <=port_count; ++port) {231 for (port = 0; port < port_count; ++port) { 232 232 bool is_non_removable = 233 233 hub_info->not_initialized_non_removables[port/8] 234 & (1 << (port % 8));234 & (1 << (port-1 % 8)); 235 235 if (is_non_removable) { 236 236 opResult = initialize_non_removable(hub_info, 237 port );237 port+1); 238 238 } 239 239 } … … 470 470 usb_speed_t speed) { 471 471 //if this hub already uses default address, it cannot request it once more 472 if (hub->is_default_address_used) return EREFUSED; 472 if (hub->is_default_address_used) { 473 usb_log_info("default address used, another time\n"); 474 return EREFUSED; 475 } 473 476 usb_log_debug("some connection changed\n"); 474 477 assert(hub->control_pipe->hc_phone); … … 710 713 usb_log_debug("connection change on port\n"); 711 714 if (usb_port_dev_connected(&status)) { 712 usb_log_debug("some connection changed\n");713 715 usb_hub_init_add_device(hub, port, 714 716 usb_port_speed(&status)); … … 743 745 /// \TODO what about port power change? 744 746 if (status >> 16) { 745 usb_log_info("there was someunsupported change on port %d: %X\n",747 usb_log_info("there was unsupported change on port %d: %X\n", 746 748 port, status); 747 749 … … 898 900 if (usb_port_dev_connected(&status)) { 899 901 usb_log_debug("there is connected device on this port\n"); 902 opResult = usb_hub_init_add_device(hub_info, port, 903 usb_port_speed(&status)); 900 904 }else{ 901 905 usb_log_debug("the non-removable device is not connected\n"); 902 } 903 if (!hub_info->is_default_address_used) 904 usb_hub_init_add_device(hub_info, port, 905 usb_port_speed(&status)); 906 opResult = EINVAL; 907 } 908 906 909 return opResult; 907 910 } … … 1021 1024 for (port = 1; port <= descriptor->ports_count; ++port) { 1022 1025 bool is_non_removable = 1023 ((non_removable_dev_bitmap[ port / 8]) >> (port% 8)) % 2;1026 ((non_removable_dev_bitmap[(port-1) / 8]) >> ((port-1) % 8)) % 2; 1024 1027 if (is_non_removable) { 1025 1028 usb_log_debug("CHECKING port %d is non-removable\n",
Note:
See TracChangeset
for help on using the changeset viewer.