Commit 32b3b52a authored by Duncan Sands's avatar Duncan Sands Committed by Greg Kroah-Hartman

[PATCH] USB speedtouch: set owner fields

I think I'd better work on my plausible deniability...
parent 251c4078
...@@ -238,6 +238,7 @@ static struct atmdev_ops udsl_atm_devops = { ...@@ -238,6 +238,7 @@ static struct atmdev_ops udsl_atm_devops = {
.ioctl = udsl_atm_ioctl, .ioctl = udsl_atm_ioctl,
.send = udsl_atm_send, .send = udsl_atm_send,
.proc_read = udsl_atm_proc_read, .proc_read = udsl_atm_proc_read,
.owner = THIS_MODULE,
}; };
/* USB */ /* USB */
...@@ -247,6 +248,7 @@ static void udsl_usb_disconnect (struct usb_interface *intf); ...@@ -247,6 +248,7 @@ static void udsl_usb_disconnect (struct usb_interface *intf);
static int udsl_usb_ioctl (struct usb_interface *intf, unsigned int code, void *user_data); static int udsl_usb_ioctl (struct usb_interface *intf, unsigned int code, void *user_data);
static struct usb_driver udsl_usb_driver = { static struct usb_driver udsl_usb_driver = {
.owner = THIS_MODULE,
.name = udsl_driver_name, .name = udsl_driver_name,
.probe = udsl_usb_probe, .probe = udsl_usb_probe,
.disconnect = udsl_usb_disconnect, .disconnect = udsl_usb_disconnect,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment