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/bluetooth | |
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/bluetooth')
-rw-r--r-- | drivers/bluetooth/bcm203x.c | 1 | ||||
-rw-r--r-- | drivers/bluetooth/bfusb.c | 1 | ||||
-rw-r--r-- | drivers/bluetooth/bpa10x.c | 1 | ||||
-rw-r--r-- | drivers/bluetooth/hci_usb.c | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/drivers/bluetooth/bcm203x.c b/drivers/bluetooth/bcm203x.c index 8e7fb3551775..3e7a067cc087 100644 --- a/drivers/bluetooth/bcm203x.c +++ b/drivers/bluetooth/bcm203x.c | |||
@@ -275,7 +275,6 @@ static void bcm203x_disconnect(struct usb_interface *intf) | |||
275 | } | 275 | } |
276 | 276 | ||
277 | static struct usb_driver bcm203x_driver = { | 277 | static struct usb_driver bcm203x_driver = { |
278 | .owner = THIS_MODULE, | ||
279 | .name = "bcm203x", | 278 | .name = "bcm203x", |
280 | .probe = bcm203x_probe, | 279 | .probe = bcm203x_probe, |
281 | .disconnect = bcm203x_disconnect, | 280 | .disconnect = bcm203x_disconnect, |
diff --git a/drivers/bluetooth/bfusb.c b/drivers/bluetooth/bfusb.c index 067e27893e4a..8947c8837dac 100644 --- a/drivers/bluetooth/bfusb.c +++ b/drivers/bluetooth/bfusb.c | |||
@@ -768,7 +768,6 @@ static void bfusb_disconnect(struct usb_interface *intf) | |||
768 | } | 768 | } |
769 | 769 | ||
770 | static struct usb_driver bfusb_driver = { | 770 | static struct usb_driver bfusb_driver = { |
771 | .owner = THIS_MODULE, | ||
772 | .name = "bfusb", | 771 | .name = "bfusb", |
773 | .probe = bfusb_probe, | 772 | .probe = bfusb_probe, |
774 | .disconnect = bfusb_disconnect, | 773 | .disconnect = bfusb_disconnect, |
diff --git a/drivers/bluetooth/bpa10x.c b/drivers/bluetooth/bpa10x.c index 394796315adc..9446960ac742 100644 --- a/drivers/bluetooth/bpa10x.c +++ b/drivers/bluetooth/bpa10x.c | |||
@@ -619,7 +619,6 @@ static void bpa10x_disconnect(struct usb_interface *intf) | |||
619 | } | 619 | } |
620 | 620 | ||
621 | static struct usb_driver bpa10x_driver = { | 621 | static struct usb_driver bpa10x_driver = { |
622 | .owner = THIS_MODULE, | ||
623 | .name = "bpa10x", | 622 | .name = "bpa10x", |
624 | .probe = bpa10x_probe, | 623 | .probe = bpa10x_probe, |
625 | .disconnect = bpa10x_disconnect, | 624 | .disconnect = bpa10x_disconnect, |
diff --git a/drivers/bluetooth/hci_usb.c b/drivers/bluetooth/hci_usb.c index 057cb2b6e6d1..92382e823285 100644 --- a/drivers/bluetooth/hci_usb.c +++ b/drivers/bluetooth/hci_usb.c | |||
@@ -1044,7 +1044,6 @@ static void hci_usb_disconnect(struct usb_interface *intf) | |||
1044 | } | 1044 | } |
1045 | 1045 | ||
1046 | static struct usb_driver hci_usb_driver = { | 1046 | static struct usb_driver hci_usb_driver = { |
1047 | .owner = THIS_MODULE, | ||
1048 | .name = "hci_usb", | 1047 | .name = "hci_usb", |
1049 | .probe = hci_usb_probe, | 1048 | .probe = hci_usb_probe, |
1050 | .disconnect = hci_usb_disconnect, | 1049 | .disconnect = hci_usb_disconnect, |