Reputation: 133
I have some packets dropping in my HID driver and whenever it drops the packet i get the "hidg_set_report_complete FAILED".
I tried to debug more to see what is causing the issue and found the req->status is "-108" in the struct usb_request.
Can any body point me what does this status code "-108" means?
This is on Linux-2.6.25 kernel on iMX28 processor
Upvotes: 0
Views: 808
Reputation: 4322
i'm not an expert on arm but fwiw this is from kernel source:
#define ESHUTDOWN 108 /* Cannot send after transport endpoint shutdown */
Upvotes: 1