Ignore:
File:
1 edited

Legend:

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

    r4d3c13e r19e0560e  
    582582        }
    583583       
    584         // parse the input report
    585        
    586         int rc = usb_hid_parse_report(hid_dev->report, buffer, buffer_size,
    587             &hid_dev->report_id);
    588        
    589         if (rc != EOK) {
    590                 usb_log_warning("Error in usb_hid_parse_report():"
    591                     "%s\n", str_error(rc));
    592         }       
    593        
    594584        bool cont = false;
    595585       
     
    598588                if (hid_dev->subdrivers[i].poll != NULL
    599589                    && hid_dev->subdrivers[i].poll(hid_dev,
    600                         hid_dev->subdrivers[i].data)) {
     590                        hid_dev->subdrivers[i].data, buffer, buffer_size)) {
    601591                        cont = true;
    602592                }
Note: See TracChangeset for help on using the changeset viewer.