Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/usbhid/subdrivers.c

    r07b9cbae r5203e256  
    4242#include "generic/hiddev.h"
    4343
    44 static const usb_hid_subdriver_usage_t path_kbd[] = {
    45         {USB_HIDUT_PAGE_GENERIC_DESKTOP,
    46          USB_HIDUT_USAGE_GENERIC_DESKTOP_KEYBOARD},
     44static usb_hid_subdriver_usage_t path_kbd[] = {
     45        {USB_HIDUT_PAGE_GENERIC_DESKTOP, 
     46         USB_HIDUT_USAGE_GENERIC_DESKTOP_KEYBOARD}, 
    4747        {0, 0}
    4848};
    4949
    50 static const usb_hid_subdriver_usage_t path_mouse[] = {
     50static usb_hid_subdriver_usage_t path_mouse[] = {
    5151        {USB_HIDUT_PAGE_GENERIC_DESKTOP, USB_HIDUT_USAGE_GENERIC_DESKTOP_MOUSE},
    5252        {0, 0}
    5353};
    5454
    55 static const usb_hid_subdriver_usage_t multim_key_path[] = {
     55static usb_hid_subdriver_usage_t multim_key_path[] = {
    5656        {USB_HIDUT_PAGE_CONSUMER, USB_HIDUT_USAGE_CONSUMER_CONSUMER_CONTROL},
    5757        {0, 0}
     
    7171                        .poll_end = NULL
    7272                },
     73               
    7374        },
    7475        {
     
    9899                }
    99100        },
     101        {NULL, -1, 0, -1, -1, {NULL, NULL, NULL, NULL, NULL}}
    100102};
    101 
    102 const size_t USB_HID_MAX_SUBDRIVERS =
    103     sizeof(usb_hid_subdrivers) / sizeof(usb_hid_subdrivers[0]);
    104103
    105104/**
Note: See TracChangeset for help on using the changeset viewer.