diff options
author | Michal Nazarewicz <m.nazarewicz@samsung.com> | 2010-08-12 11:43:54 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-10-22 13:21:25 -0400 |
commit | 07a18bd716ed5dea336429404b132568cfaaef95 (patch) | |
tree | 1ff7719e2e0e022cff3ed420bc1c332662a1a48c /drivers/usb/gadget/ether.c | |
parent | b0fca50f5a94a268ed02cfddf44448051ed9343f (diff) |
usb gadget: don't save bind callback in struct usb_composite_driver
The bind function is most of the time only called at init time so there
is no need to save a pointer to it in the composite driver structure.
This fixes many section mismatches reported by modpost.
Signed-off-by: Michał Nazarewicz <m.nazarewicz@samsung.com>
Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
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 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/usb/gadget/ether.c b/drivers/usb/gadget/ether.c index 400f80372d93..33076bca9936 100644 --- a/drivers/usb/gadget/ether.c +++ b/drivers/usb/gadget/ether.c | |||
@@ -402,7 +402,6 @@ static struct usb_composite_driver eth_driver = { | |||
402 | .name = "g_ether", | 402 | .name = "g_ether", |
403 | .dev = &device_desc, | 403 | .dev = &device_desc, |
404 | .strings = dev_strings, | 404 | .strings = dev_strings, |
405 | .bind = eth_bind, | ||
406 | .unbind = __exit_p(eth_unbind), | 405 | .unbind = __exit_p(eth_unbind), |
407 | }; | 406 | }; |
408 | 407 | ||
@@ -412,7 +411,7 @@ MODULE_LICENSE("GPL"); | |||
412 | 411 | ||
413 | static int __init init(void) | 412 | static int __init init(void) |
414 | { | 413 | { |
415 | return usb_composite_register(ð_driver); | 414 | return usb_composite_probe(ð_driver, eth_bind); |
416 | } | 415 | } |
417 | module_init(init); | 416 | module_init(init); |
418 | 417 | ||