Changeset df6ded8 in mainline for uspace/drv/bus/usb/usbhub/main.c
- Timestamp:
- 2018-02-28T16:37:50Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1b20da0
- Parents:
- f5e5f73 (diff), b2dca8de (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Jakub Jermar <jakub@…> (2018-02-28 16:06:42)
- git-committer:
- Jakub Jermar <jakub@…> (2018-02-28 16:37:50)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbhub/main.c
rf5e5f73 rdf6ded8 48 48 static const usb_driver_ops_t usb_hub_driver_ops = { 49 49 .device_add = usb_hub_device_add, 50 // .device_rem= usb_hub_device_remove,50 .device_remove = usb_hub_device_remove, 51 51 .device_gone = usb_hub_device_gone, 52 52 }; 53 53 54 /** Hub endpoints, excluding control endpoint. */55 static const usb_endpoint_description_t *usb_hub_endpoints[] = {56 &hub_status_change_endpoint_description,57 NULL,58 };59 54 /** Static usb hub driver information. */ 60 55 static const usb_driver_t usb_hub_driver = {
Note:
See TracChangeset
for help on using the changeset viewer.