Changeset f126c87 in mainline for uspace/drv/bus/usb/usbhub/usbhub.h
- Timestamp:
- 2016-09-01T16:46:27Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2a2fbc8
- Parents:
- 9befb0d (diff), bdfdc51c (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbhub/usbhub.h
r9befb0d rf126c87 27 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 28 */ 29 29 30 /** @addtogroup drvusbhub 30 31 * @{ … … 33 34 * @brief Hub driver. 34 35 */ 36 35 37 #ifndef DRV_USBHUB_USBHUB_H 36 38 #define DRV_USBHUB_USBHUB_H … … 82 84 extern const usb_endpoint_description_t hub_status_change_endpoint_description; 83 85 84 int usb_hub_device_add(usb_device_t *usb_dev);85 int usb_hub_device_remove(usb_device_t *usb_dev);86 int usb_hub_device_gone(usb_device_t *usb_dev);86 extern int usb_hub_device_add(usb_device_t *); 87 extern int usb_hub_device_remove(usb_device_t *); 88 extern int usb_hub_device_gone(usb_device_t *); 87 89 88 bool hub_port_changes_callback(usb_device_t *dev,89 uint8_t *change_bitmap, size_t change_bitmap_size, void *arg);90 extern bool hub_port_changes_callback(usb_device_t *, uint8_t *, size_t, 91 void *); 90 92 91 93 #endif 94 92 95 /** 93 96 * @}
Note:
See TracChangeset
for help on using the changeset viewer.