Ignore:
File:
1 edited

Legend:

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

    r05a119b r9d58539  
    9393        return EOK;
    9494}
     95
    9596/** USB fallback driver ops. */
    96 static usb_driver_ops_t usbfallback_driver_ops = {
     97static const usb_driver_ops_t usbfallback_driver_ops = {
    9798        .device_add = usbfallback_device_add,
     99        .device_rem = usbfallback_device_gone,
    98100        .device_gone = usbfallback_device_gone,
    99101};
    100102
    101103/** USB fallback driver. */
    102 static usb_driver_t usbfallback_driver = {
     104static const usb_driver_t usbfallback_driver = {
    103105        .name = NAME,
    104106        .ops = &usbfallback_driver_ops,
Note: See TracChangeset for help on using the changeset viewer.