Bugzilla – Attachment 70614 Details for
Bug 146781
USB Mouse will not move
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
IDP Log In
|
Forgot Password
[patch]
A patch that both adds debugging and tries to fix the problem.
dipatch (text/plain), 825 bytes, created by
Vojtech Pavlik
on 2006-02-28 12:03:57 UTC
(
hide
)
Description:
A patch that both adds debugging and tries to fix the problem.
Filename:
MIME Type:
Creator:
Vojtech Pavlik
Created:
2006-02-28 12:03:57 UTC
Size:
825 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 -EILSEQ: /* unplug timeout on uhci or CRC error */ > case -ETIMEDOUT: /* NAK */ >+ warn("error 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