diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2005-11-21 17:53:03 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-04 16:48:34 -0500 |
commit | 75318d2d7cab77b14c5d3dbd5e69f2680a769e16 (patch) | |
tree | 13098167bd41d7dd0b0d3f678534a6daa29b4005 /drivers/isdn/hisax | |
parent | 2143acc6dc79bdbff812f02a7dc5ab9d4fc81fc8 (diff) |
[PATCH] USB: remove .owner field from struct usb_driver
It is no longer needed, so let's remove it, saving a bit of memory.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/isdn/hisax')
-rw-r--r-- | drivers/isdn/hisax/hfc_usb.c | 1 | ||||
-rw-r--r-- | drivers/isdn/hisax/st5481_init.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/drivers/isdn/hisax/hfc_usb.c b/drivers/isdn/hisax/hfc_usb.c index f8457ef48826..ca5b4a3b683e 100644 --- a/drivers/isdn/hisax/hfc_usb.c +++ b/drivers/isdn/hisax/hfc_usb.c | |||
@@ -1715,7 +1715,6 @@ hfc_usb_disconnect(struct usb_interface | |||
1715 | /* our driver information structure */ | 1715 | /* our driver information structure */ |
1716 | /************************************/ | 1716 | /************************************/ |
1717 | static struct usb_driver hfc_drv = { | 1717 | static struct usb_driver hfc_drv = { |
1718 | .owner = THIS_MODULE, | ||
1719 | .name = "hfc_usb", | 1718 | .name = "hfc_usb", |
1720 | .id_table = hfcusb_idtab, | 1719 | .id_table = hfcusb_idtab, |
1721 | .probe = hfc_usb_probe, | 1720 | .probe = hfc_usb_probe, |
diff --git a/drivers/isdn/hisax/st5481_init.c b/drivers/isdn/hisax/st5481_init.c index 8e192a3a3490..99cb0f3d59a1 100644 --- a/drivers/isdn/hisax/st5481_init.c +++ b/drivers/isdn/hisax/st5481_init.c | |||
@@ -180,7 +180,6 @@ static struct usb_device_id st5481_ids[] = { | |||
180 | MODULE_DEVICE_TABLE (usb, st5481_ids); | 180 | MODULE_DEVICE_TABLE (usb, st5481_ids); |
181 | 181 | ||
182 | static struct usb_driver st5481_usb_driver = { | 182 | static struct usb_driver st5481_usb_driver = { |
183 | .owner = THIS_MODULE, | ||
184 | .name = "st5481_usb", | 183 | .name = "st5481_usb", |
185 | .probe = probe_st5481, | 184 | .probe = probe_st5481, |
186 | .disconnect = disconnect_st5481, | 185 | .disconnect = disconnect_st5481, |