[PATCH 38/39] input: Fix oops in hiddev
From: Vojtech Pavlik (vojtech_at_suse.cz)
Date: 06/07/04
- Previous message: Vojtech Pavlik: "[PATCH 21/39] input: Microtouch USB driver update"
- In reply to: Vojtech Pavlik: "[PATCH 37/39] input: Check for IM Explorer mice even if IMPS check failed."
- Next in thread: Vojtech Pavlik: "[PATCH 39/39] input: Exclude tasklet changes to i8042.c"
- Reply: Vojtech Pavlik: "[PATCH 39/39] input: Exclude tasklet changes to i8042.c"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
To: torvalds@osdl.org, akpm@osdl.org, vojtech@ucw.cz, linux-kernel@vger.kernel.org Date: Mon, 7 Jun 2004 13:55:55 +0200
You can pull this changeset from:
bk://kernel.bkbits.net/vojtech/input-for-linus
===================================================================
ChangeSet@1.1612.1.19, 2004-05-17 13:02:06+02:00, tiwai@suse.de
input: Fix oops in hiddev
hiddev.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
===================================================================
diff -Nru a/drivers/usb/input/hiddev.c b/drivers/usb/input/hiddev.c
--- a/drivers/usb/input/hiddev.c 2004-06-07 13:10:21 +02:00
+++ b/drivers/usb/input/hiddev.c 2004-06-07 13:10:21 +02:00
@@ -232,7 +232,7 @@
static struct usb_class_driver hiddev_class;
static void hiddev_cleanup(struct hiddev *hiddev)
{
- hiddev_table[hiddev->hid->minor] = NULL;
+ hiddev_table[hiddev->hid->minor - HIDDEV_MINOR_BASE] = NULL;
usb_deregister_dev(hiddev->hid->intf, &hiddev_class);
kfree(hiddev);
}
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
- Previous message: Vojtech Pavlik: "[PATCH 21/39] input: Microtouch USB driver update"
- In reply to: Vojtech Pavlik: "[PATCH 37/39] input: Check for IM Explorer mice even if IMPS check failed."
- Next in thread: Vojtech Pavlik: "[PATCH 39/39] input: Exclude tasklet changes to i8042.c"
- Reply: Vojtech Pavlik: "[PATCH 39/39] input: Exclude tasklet changes to i8042.c"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|