Commit 0dfcd3e4 authored by Duncan Sands's avatar Duncan Sands Committed by Greg Kroah-Hartman

[PATCH] USBATM: remove .owner

Remove the unused .owner field in struct usbatm_driver.
Signed-off-by: default avatarDuncan Sands <baldrick@free.fr>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 35644b0c
...@@ -833,7 +833,6 @@ static const struct usb_device_id cxacru_usb_ids[] = { ...@@ -833,7 +833,6 @@ static const struct usb_device_id cxacru_usb_ids[] = {
MODULE_DEVICE_TABLE(usb, cxacru_usb_ids); MODULE_DEVICE_TABLE(usb, cxacru_usb_ids);
static struct usbatm_driver cxacru_driver = { static struct usbatm_driver cxacru_driver = {
.owner = THIS_MODULE,
.driver_name = cxacru_driver_name, .driver_name = cxacru_driver_name,
.bind = cxacru_bind, .bind = cxacru_bind,
.heavy_init = cxacru_heavy_init, .heavy_init = cxacru_heavy_init,
......
...@@ -793,7 +793,6 @@ static void speedtch_unbind(struct usbatm_data *usbatm, struct usb_interface *in ...@@ -793,7 +793,6 @@ static void speedtch_unbind(struct usbatm_data *usbatm, struct usb_interface *in
***********/ ***********/
static struct usbatm_driver speedtch_usbatm_driver = { static struct usbatm_driver speedtch_usbatm_driver = {
.owner = THIS_MODULE,
.driver_name = speedtch_driver_name, .driver_name = speedtch_driver_name,
.bind = speedtch_bind, .bind = speedtch_bind,
.heavy_init = speedtch_heavy_init, .heavy_init = speedtch_heavy_init,
......
...@@ -1629,7 +1629,7 @@ static int uea_bind(struct usbatm_data *usbatm, struct usb_interface *intf, ...@@ -1629,7 +1629,7 @@ static int uea_bind(struct usbatm_data *usbatm, struct usb_interface *intf,
if (ifnum != UEA_INTR_IFACE_NO) if (ifnum != UEA_INTR_IFACE_NO)
return -ENODEV; return -ENODEV;
usbatm_instance->flags = (sync_wait[modem_index] ? 0 : UDSL_SKIP_HEAVY_INIT); usbatm->flags = (sync_wait[modem_index] ? 0 : UDSL_SKIP_HEAVY_INIT);
/* interface 1 is for outbound traffic */ /* interface 1 is for outbound traffic */
ret = claim_interface(usb, usbatm, UEA_US_IFACE_NO); ret = claim_interface(usb, usbatm, UEA_US_IFACE_NO);
...@@ -1701,7 +1701,6 @@ static void uea_unbind(struct usbatm_data *usbatm, struct usb_interface *intf) ...@@ -1701,7 +1701,6 @@ static void uea_unbind(struct usbatm_data *usbatm, struct usb_interface *intf)
static struct usbatm_driver uea_usbatm_driver = { static struct usbatm_driver uea_usbatm_driver = {
.driver_name = "ueagle-atm", .driver_name = "ueagle-atm",
.owner = THIS_MODULE,
.bind = uea_bind, .bind = uea_bind,
.atm_start = uea_atm_open, .atm_start = uea_atm_open,
.unbind = uea_unbind, .unbind = uea_unbind,
......
...@@ -100,8 +100,6 @@ struct usbatm_data; ...@@ -100,8 +100,6 @@ struct usbatm_data;
*/ */
struct usbatm_driver { struct usbatm_driver {
struct module *owner;
const char *driver_name; const char *driver_name;
/* init device ... can sleep, or cause probe() failure */ /* init device ... can sleep, or cause probe() failure */
......
...@@ -166,7 +166,6 @@ static int __init xusbatm_init(void) ...@@ -166,7 +166,6 @@ static int __init xusbatm_init(void)
xusbatm_usb_ids[i].idProduct = product[i]; xusbatm_usb_ids[i].idProduct = product[i];
xusbatm_drivers[i].owner = THIS_MODULE;
xusbatm_drivers[i].driver_name = xusbatm_driver_name; xusbatm_drivers[i].driver_name = xusbatm_driver_name;
xusbatm_drivers[i].bind = xusbatm_bind; xusbatm_drivers[i].bind = xusbatm_bind;
xusbatm_drivers[i].unbind = xusbatm_unbind; xusbatm_drivers[i].unbind = xusbatm_unbind;
......
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