Changes in uspace/drv/bus/usb/usbflbk/main.c [9d58539:05a119b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbflbk/main.c
r9d58539 r05a119b 93 93 return EOK; 94 94 } 95 96 95 /** USB fallback driver ops. */ 97 static constusb_driver_ops_t usbfallback_driver_ops = {96 static usb_driver_ops_t usbfallback_driver_ops = { 98 97 .device_add = usbfallback_device_add, 99 .device_rem = usbfallback_device_gone,100 98 .device_gone = usbfallback_device_gone, 101 99 }; 102 100 103 101 /** USB fallback driver. */ 104 static constusb_driver_t usbfallback_driver = {102 static usb_driver_t usbfallback_driver = { 105 103 .name = NAME, 106 104 .ops = &usbfallback_driver_ops,
Note:
See TracChangeset
for help on using the changeset viewer.