Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/usbflbk/main.c

    r9d58539 r05a119b  
    9393        return EOK;
    9494}
    95 
    9695/** USB fallback driver ops. */
    97 static const usb_driver_ops_t usbfallback_driver_ops = {
     96static usb_driver_ops_t usbfallback_driver_ops = {
    9897        .device_add = usbfallback_device_add,
    99         .device_rem = usbfallback_device_gone,
    10098        .device_gone = usbfallback_device_gone,
    10199};
    102100
    103101/** USB fallback driver. */
    104 static const usb_driver_t usbfallback_driver = {
     102static usb_driver_t usbfallback_driver = {
    105103        .name = NAME,
    106104        .ops = &usbfallback_driver_ops,
Note: See TracChangeset for help on using the changeset viewer.