Changeset 09ab0a9a in mainline for uspace/drv/bus/usb/vhc
- Timestamp:
- 2018-09-13T12:05:53Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cc74cb5
- Parents:
- b2aaaa0
- git-author:
- Jiri Svoboda <jiri@…> (2018-09-13 07:09:46)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-09-13 12:05:53)
- Location:
- uspace/drv/bus/usb/vhc
- Files:
-
- 7 edited
-
conndev.c (modified) (1 diff)
-
devconn.c (modified) (1 diff)
-
hub/hub.c (modified) (3 diffs)
-
hub/hub.h (modified) (1 diff)
-
hub/virthub.c (modified) (1 diff)
-
hub/virthub.h (modified) (1 diff)
-
hub/virthubops.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/vhc/conndev.c
rb2aaaa0 r09ab0a9a 135 135 } 136 136 137 138 137 /** 139 138 * @} -
uspace/drv/bus/usb/vhc/devconn.c
rb2aaaa0 r09ab0a9a 30 30 #include "vhcd.h" 31 31 #include "hub/virthub.h" 32 33 32 34 33 static vhc_virtdev_t *vhc_virtdev_create(void) -
uspace/drv/bus/usb/vhc/hub/hub.c
rb2aaaa0 r09ab0a9a 43 43 44 44 #include "hub.h" 45 46 45 47 46 /** Produce a byte from bit values. … … 388 387 } 389 388 390 391 389 /* 392 390 * … … 516 514 } 517 515 518 519 520 516 /** 521 517 * @} -
uspace/drv/bus/usb/vhc/hub/hub.h
rb2aaaa0 r09ab0a9a 114 114 uint8_t hub_get_status_change_bitmap(hub_t *); 115 115 116 117 116 #endif 118 117 /** -
uspace/drv/bus/usb/vhc/hub/virthub.c
rb2aaaa0 r09ab0a9a 47 47 #include "virthub.h" 48 48 #include "hub.h" 49 50 49 51 50 /** Standard device descriptor. */ -
uspace/drv/bus/usb/vhc/hub/virthub.h
rb2aaaa0 r09ab0a9a 51 51 #define HUB_CONFIGURATION_ID 1 52 52 53 54 53 /** Hub descriptor. 55 54 */ -
uspace/drv/bus/usb/vhc/hub/virthubops.c
rb2aaaa0 r09ab0a9a 84 84 } 85 85 86 87 86 uint8_t change_map = hub_get_status_change_bitmap(hub); 88 87 … … 340 339 } 341 340 342 343 344 341 /** Recipient: other. */ 345 342 #define REC_OTHER USB_REQUEST_RECIPIENT_OTHER … … 347 344 #define REC_DEVICE USB_REQUEST_RECIPIENT_DEVICE 348 345 349 350 346 /** Hub operations on control endpoint zero. */ 351 347 static usbvirt_control_request_handler_t endpoint_zero_handlers[] = { … … 409 405 } 410 406 }; 411 412 407 413 408 /** Hub operations. */
Note:
See TracChangeset
for help on using the changeset viewer.
