]> git.pld-linux.org Git - packages/kernel.git/blame - linux-2.4.19-USB-hid-input.patch
- fix unresolved symbols in ipv6 netfilter
[packages/kernel.git] / linux-2.4.19-USB-hid-input.patch
CommitLineData
74aafcb3 1--- linux-2.4.19/drivers/usb/hid-input.c.org Sun Nov 17 09:16:51 2002
2+++ linux-2.4.19/drivers/usb/hid-input.c Sun Nov 17 09:17:28 2002
3@@ -271,7 +271,7 @@
4 set_bit(usage->type, input->evbit);
5
6 while (usage->code <= max && test_and_set_bit(usage->code, bit)) {
7- usage->code = find_next_zero_bit(bit, usage->code, max + 1);
8+ usage->code = find_next_zero_bit(bit, max + 1, usage->code);
9 }
10
11 if (usage->code > max) return;
This page took 0.253199 seconds and 4 git commands to generate.