Bugzilla – Attachment 70422 Details for
Bug 146781
USB Mouse will not move
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
IDP Log In
|
Forgot Password
[patch]
Adding some debug info to HID irq routine
dipatch (text/plain), 767 bytes, created by
Vojtech Pavlik
on 2006-02-27 15:40:53 UTC
(
hide
)
Description:
Adding some debug info to HID irq routine
Filename:
MIME Type:
Creator:
Vojtech Pavlik
Created:
2006-02-27 15:40:53 UTC
Size:
767 bytes
patch
obsolete
>diff --git a/drivers/usb/input/hid-core.c b/drivers/usb/input/hid-core.c >--- a/drivers/usb/input/hid-core.c >+++ b/drivers/usb/input/hid-core.c >@@ -922,14 +922,17 @@ static void hid_irq_in(struct urb *urb, > switch (urb->status) { > case 0: /* success */ > hid_input_report(HID_INPUT_REPORT, urb, 1, regs); >+ info("OK irq status %d received", urb->status); > break; > case -ECONNRESET: /* unlink */ > case -ENOENT: > case -EPERM: > case -ESHUTDOWN: /* unplug */ > case -EILSEQ: /* unplug timeout on uhci */ >+ warn("fatal irq status %d received", urb->status); > return; > case -ETIMEDOUT: /* NAK */ >+ warn("timeout irq status %d received", urb->status); > break; > default: /* error */ > warn("input irq status %d received", urb->status);
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
Actions:
View
|
Diff
Attachments on
bug 146781
:
65797
|
66036
|
66091
|
70422
|
70614
|
70930