Changeset fec47d4 in mainline for uspace/drv/usbhid/usbhid.c


Ignore:
Timestamp:
2011-04-08T07:48:06Z (13 years ago)
Author:
Lubos Slovak <lubos.slovak@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1c6f4ff, 74a1ba9
Parents:
73ae3373
Message:

Fixed typos + changed match IDs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/usbhid/usbhid.c

    r73ae3373 rfec47d4  
    5151
    5252/** Mouse polling endpoint description for boot protocol class. */
    53 static usb_endpoint_description_t ush_hid_mouse_poll_endpoint_description = {
     53static usb_endpoint_description_t usb_hid_mouse_poll_endpoint_description = {
    5454        .transfer_type = USB_TRANSFER_INTERRUPT,
    5555        .direction = USB_DIRECTION_IN,
     
    6161
    6262/* Array of endpoints expected on the device, NULL terminated. */
    63 usb_endpoint_description_t
    64     *usb_hid_endpoints[USB_HID_POLL_EP_COUNT + 1] = {
    65         &ush_hid_kbd_poll_endpoint_description,
    66         &ush_hid_mouse_poll_endpoint_description,
     63usb_endpoint_description_t *usb_hid_endpoints[USB_HID_POLL_EP_COUNT + 1] = {
     64        &usb_hid_kbd_poll_endpoint_description,
     65        &usb_hid_mouse_poll_endpoint_description,
    6766        &usb_hid_generic_poll_endpoint_description,
    6867        NULL
Note: See TracChangeset for help on using the changeset viewer.