[git pull 3/7] HID: fix an oops in PID initialization code

From: Dmitry Torokhov
Date: Sat Jan 14 2006 - 11:01:09 EST


Input: HID - fix an oops in PID initialization code

Signed-off-by: Dmitry Torokhov <dtor@xxxxxxx>
---

drivers/usb/input/pid.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)

Index: work/drivers/usb/input/pid.c
===================================================================
--- work.orig/drivers/usb/input/pid.c
+++ work/drivers/usb/input/pid.c
@@ -259,7 +259,7 @@ static int hid_pid_upload_effect(struct
int hid_pid_init(struct hid_device *hid)
{
struct hid_ff_pid *private;
- struct hid_input *hidinput = list_entry(&hid->inputs, struct hid_input, list);
+ struct hid_input *hidinput = list_entry(hid->inputs.next, struct hid_input, list);
struct input_dev *input_dev = hidinput->input;

private = hid->ff_private = kzalloc(sizeof(struct hid_ff_pid), GFP_KERNEL);

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/