Changeset 5a6cc679 in mainline for uspace/drv/bus/usb/usbhub/usbhub.h
- Timestamp:
- 2018-01-31T02:21:24Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a0a9cc2
- Parents:
- 132ab5d1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbhub/usbhub.h
r132ab5d1 r5a6cc679 78 78 extern const usb_endpoint_description_t *usb_hub_endpoints []; 79 79 80 int usb_hub_device_add(usb_device_t *);81 int usb_hub_device_remove(usb_device_t *);82 int usb_hub_device_gone(usb_device_t *);80 errno_t usb_hub_device_add(usb_device_t *); 81 errno_t usb_hub_device_remove(usb_device_t *); 82 errno_t usb_hub_device_gone(usb_device_t *); 83 83 84 int usb_hub_set_depth(const usb_hub_dev_t *);85 int usb_hub_get_port_status(const usb_hub_dev_t *, size_t, usb_port_status_t *);86 int usb_hub_set_port_feature(const usb_hub_dev_t *, size_t, usb_hub_class_feature_t);87 int usb_hub_clear_port_feature(const usb_hub_dev_t *, size_t, usb_hub_class_feature_t);84 errno_t usb_hub_set_depth(const usb_hub_dev_t *); 85 errno_t usb_hub_get_port_status(const usb_hub_dev_t *, size_t, usb_port_status_t *); 86 errno_t usb_hub_set_port_feature(const usb_hub_dev_t *, size_t, usb_hub_class_feature_t); 87 errno_t usb_hub_clear_port_feature(const usb_hub_dev_t *, size_t, usb_hub_class_feature_t); 88 88 89 89 bool hub_port_changes_callback(usb_device_t *, uint8_t *, size_t, void *); 90 90 91 int usb_hub_reserve_default_address(usb_hub_dev_t *, async_exch_t *, usb_port_t *);92 int usb_hub_release_default_address(usb_hub_dev_t *, async_exch_t *);91 errno_t usb_hub_reserve_default_address(usb_hub_dev_t *, async_exch_t *, usb_port_t *); 92 errno_t usb_hub_release_default_address(usb_hub_dev_t *, async_exch_t *); 93 93 94 94 #endif
Note:
See TracChangeset
for help on using the changeset viewer.