Changes in uspace/drv/bus/usb/usbmid/main.c [6785b538:d46ceb2b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbmid/main.c
r6785b538 rd46ceb2b 147 147 } 148 148 149 static int usbmid_function_online(ddf_fun_t *fun) 150 { 151 /* TODO: What if this is the control function? */ 152 return ddf_fun_online(fun); 153 } 154 155 static int usbmid_function_offline(ddf_fun_t *fun) 156 { 157 /* TODO: What if this is the control function? */ 158 return ddf_fun_offline(fun); 159 } 160 149 161 /** USB MID driver ops. */ 150 162 static const usb_driver_ops_t mid_driver_ops = { … … 152 164 .device_rem = usbmid_device_remove, 153 165 .device_gone = usbmid_device_gone, 166 .function_online = usbmid_function_online, 167 .function_offline = usbmid_function_offline 154 168 }; 155 169
Note:
See TracChangeset
for help on using the changeset viewer.