Messages in this thread Patch in this message |  | | | From | Duncan Sands <> | | Subject | [2.5 PATCH] USB speedtouch: set owner fields | | Date | Fri, 23 May 2003 18:06:23 +0200 |
| |
I think I'd better work on my plausible deniability...
speedtch.c | 2 ++ 1 files changed, 2 insertions(+)
diff -Nru a/drivers/usb/misc/speedtch.c b/drivers/usb/misc/speedtch.c --- a/drivers/usb/misc/speedtch.c Fri May 23 18:04:51 2003 +++ b/drivers/usb/misc/speedtch.c Fri May 23 18:04:51 2003 @@ -238,6 +238,7 @@ .ioctl = udsl_atm_ioctl, .send = udsl_atm_send, .proc_read = udsl_atm_proc_read, + .owner = THIS_MODULE, }; /* USB */ @@ -247,6 +248,7 @@ static int udsl_usb_ioctl (struct usb_interface *intf, unsigned int code, void *user_data); static struct usb_driver udsl_usb_driver = { + .owner = THIS_MODULE, .name = udsl_driver_name, .probe = udsl_usb_probe, .disconnect = udsl_usb_disconnect, - 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/
|  |