Changeset 5a73a7e in mainline
- Timestamp:
- 2018-01-12T10:29:38Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f75725d
- Parents:
- c097d22
- Location:
- uspace/drv/bus/usb/usbhub
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbhub/main.c
rc097d22 r5a73a7e 48 48 static const usb_driver_ops_t usb_hub_driver_ops = { 49 49 .device_add = usb_hub_device_add, 50 // .device_remove = usb_hub_device_remove, 50 .device_remove = usb_hub_device_remove, 51 .device_removed = usb_hub_device_removed, 51 52 .device_gone = usb_hub_device_gone, 52 53 }; -
uspace/drv/bus/usb/usbhub/usbhub.c
rc097d22 r5a73a7e 176 176 int usb_hub_device_remove(usb_device_t *usb_dev) 177 177 { 178 return ENOTSUP; 178 /* TODO: Implement me! */ 179 return EOK; 180 } 181 182 int usb_hub_device_removed(usb_device_t *usb_dev) 183 { 184 /* TODO: Implement me! */ 185 return EOK; 179 186 } 180 187 -
uspace/drv/bus/usb/usbhub/usbhub.h
rc097d22 r5a73a7e 85 85 extern int usb_hub_device_add(usb_device_t *); 86 86 extern int usb_hub_device_remove(usb_device_t *); 87 extern int usb_hub_device_removed(usb_device_t *); 87 88 extern int usb_hub_device_gone(usb_device_t *); 88 89
Note:
See TracChangeset
for help on using the changeset viewer.