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