diff options
author | David Brownell <david-b@pacbell.net> | 2006-02-18 15:31:05 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-03-20 17:49:58 -0500 |
commit | 329af28b141ab4ae847aff1362864c4cc332641f (patch) | |
tree | c4871a6065ed635998204efef0a63fda8c3dbfcc /drivers/usb/gadget/ether.c | |
parent | 43c5d5aaafef56618a6efbcab7f91615da1a8659 (diff) |
[PATCH] USB: gadget driver section fixups
This adds __init section annotations to gadget driver bind() routines to
remove calls from .text into .init sections (for endpoint autoconfig).
Likewise it adds __exit section annotations to their unbind() routines.
The specification of the gadget driver register/unregister functions is
updated to explicitly allow use of those sections.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/gadget/ether.c')
-rw-r--r-- | drivers/usb/gadget/ether.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/gadget/ether.c b/drivers/usb/gadget/ether.c index 3d2603e31808..0d9d9bbb73f0 100644 --- a/drivers/usb/gadget/ether.c +++ b/drivers/usb/gadget/ether.c | |||
@@ -2125,7 +2125,7 @@ eth_req_free (struct usb_ep *ep, struct usb_request *req) | |||
2125 | } | 2125 | } |
2126 | 2126 | ||
2127 | 2127 | ||
2128 | static void | 2128 | static void __exit |
2129 | eth_unbind (struct usb_gadget *gadget) | 2129 | eth_unbind (struct usb_gadget *gadget) |
2130 | { | 2130 | { |
2131 | struct eth_dev *dev = get_gadget_data (gadget); | 2131 | struct eth_dev *dev = get_gadget_data (gadget); |
@@ -2532,7 +2532,7 @@ static struct usb_gadget_driver eth_driver = { | |||
2532 | 2532 | ||
2533 | .function = (char *) driver_desc, | 2533 | .function = (char *) driver_desc, |
2534 | .bind = eth_bind, | 2534 | .bind = eth_bind, |
2535 | .unbind = eth_unbind, | 2535 | .unbind = __exit_p(eth_unbind), |
2536 | 2536 | ||
2537 | .setup = eth_setup, | 2537 | .setup = eth_setup, |
2538 | .disconnect = eth_disconnect, | 2538 | .disconnect = eth_disconnect, |