Changes in uspace/drv/bus/usb/vhc/hub/hub.c [b7fd2a0:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/vhc/hub/hub.c
rb7fd2a0 r9d58539 63 63 static void set_port_status_change(hub_port_t *, hub_status_change_t); 64 64 static void clear_port_status_change(hub_port_t *, uint16_t); 65 static errno_t set_port_state_delayed_fibril(void *);65 static int set_port_state_delayed_fibril(void *); 66 66 static void set_port_state_delayed(hub_t *, size_t, suseconds_t, 67 67 hub_port_state_t, hub_port_state_t); … … 163 163 * @return Error code. 164 164 */ 165 errno_t hub_disconnect_device(hub_t *hub, void *device)165 int hub_disconnect_device(hub_t *hub, void *device) 166 166 { 167 167 size_t index = hub_find_device(hub, device); … … 461 461 * @return Always EOK. 462 462 */ 463 static errno_t set_port_state_delayed_fibril(void *arg)463 static int set_port_state_delayed_fibril(void *arg) 464 464 { 465 465 struct delay_port_state_change *change
Note:
See TracChangeset
for help on using the changeset viewer.