diff options
author | Yuan-Hsin Chen <yhchen@faraday-tech.com> | 2013-06-21 14:50:47 +0000 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-07-15 12:59:17 +0300 |
commit | 88ae742347831c47846ca7343e786abd6635752b (patch) | |
tree | 2e295a53a441872e33321dc89d0389632f752c37 /drivers/usb/gadget | |
parent | ae40d64b1f2db93d7b092e6425a2f716289fbd09 (diff) | |
download | op-kernel-dev-88ae742347831c47846ca7343e786abd6635752b.zip op-kernel-dev-88ae742347831c47846ca7343e786abd6635752b.tar.gz |
usb: gadget: fotg210-udc: remove __init and __exit
Remove __init and __exit from probe() and remove() and
would also fix the section mismatch issue.
Signed-off-by: Yuan-Hsin Chen <yhchen@faraday-tech.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget')
-rw-r--r-- | drivers/usb/gadget/fotg210-udc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/gadget/fotg210-udc.c b/drivers/usb/gadget/fotg210-udc.c index cce5535..10cd18d 100644 --- a/drivers/usb/gadget/fotg210-udc.c +++ b/drivers/usb/gadget/fotg210-udc.c @@ -1074,7 +1074,7 @@ static struct usb_gadget_ops fotg210_gadget_ops = { .udc_stop = fotg210_udc_stop, }; -static int __exit fotg210_udc_remove(struct platform_device *pdev) +static int fotg210_udc_remove(struct platform_device *pdev) { struct fotg210_udc *fotg210 = dev_get_drvdata(&pdev->dev); @@ -1088,7 +1088,7 @@ static int __exit fotg210_udc_remove(struct platform_device *pdev) return 0; } -static int __init fotg210_udc_probe(struct platform_device *pdev) +static int fotg210_udc_probe(struct platform_device *pdev) { struct resource *res, *ires; struct fotg210_udc *fotg210 = NULL; |