Ignore:
File:
1 edited

Legend:

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

    r93d2684 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        {
     
    101102};
    102103
    103 const int USB_HID_MAX_SUBDRIVERS =
    104     sizeof(usb_hid_subdrivers) / sizeof(usb_hid_subdrivers[0]);
    105 
    106104/**
    107105 * @}
Note: See TracChangeset for help on using the changeset viewer.