Changeset 4c74ac3 in mainline for uspace/drv/usbhub/usbhub.h
- Timestamp:
- 2010-12-12T14:46:13Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 16ecc28
- Parents:
- b666608
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhub/usbhub.h
rb666608 r4c74ac3 53 53 } usb_hub_info_t; 54 54 55 int usb_add_hub_device(device_t *); 55 /** 56 * function running the hub-controlling loop. 57 * @param noparam fundtion does not need any parameters 58 */ 59 int usb_hub_control_loop(void * noparam); 60 61 /** Callback when new hub device is detected. 62 * 63 * @param dev New device. 64 * @return Error code. 65 */ 66 int usb_add_hub_device(device_t *dev); 67 68 /** 69 * check changes on all registered hubs 70 */ 71 void usb_hub_check_hub_changes(void); 72 73 74 //int usb_add_hub_device(device_t *); 75 76 56 77 57 78 #endif
Note:
See TracChangeset
for help on using the changeset viewer.