Commit dc1737cd authored by Felipe Balbi's avatar Felipe Balbi

usb: gadget: omap_udc: let it work as a module

this also helps removing a few lines of boilerplate
code.
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 5b6d84b7
...@@ -2535,7 +2535,7 @@ static inline void remove_proc_file(void) {} ...@@ -2535,7 +2535,7 @@ static inline void remove_proc_file(void) {}
* UDC_SYSCON_1.CFG_LOCK is set can now work. We won't use that * UDC_SYSCON_1.CFG_LOCK is set can now work. We won't use that
* capability yet though. * capability yet though.
*/ */
static unsigned __init static unsigned __devinit
omap_ep_setup(char *name, u8 addr, u8 type, omap_ep_setup(char *name, u8 addr, u8 type,
unsigned buf, unsigned maxp, int dbuf) unsigned buf, unsigned maxp, int dbuf)
{ {
...@@ -2653,7 +2653,7 @@ static void omap_udc_release(struct device *dev) ...@@ -2653,7 +2653,7 @@ static void omap_udc_release(struct device *dev)
udc = NULL; udc = NULL;
} }
static int __init static int __devinit
omap_udc_setup(struct platform_device *odev, struct usb_phy *xceiv) omap_udc_setup(struct platform_device *odev, struct usb_phy *xceiv)
{ {
unsigned tmp, buf; unsigned tmp, buf;
...@@ -2790,7 +2790,7 @@ omap_udc_setup(struct platform_device *odev, struct usb_phy *xceiv) ...@@ -2790,7 +2790,7 @@ omap_udc_setup(struct platform_device *odev, struct usb_phy *xceiv)
return 0; return 0;
} }
static int __init omap_udc_probe(struct platform_device *pdev) static int __devinit omap_udc_probe(struct platform_device *pdev)
{ {
int status = -ENODEV; int status = -ENODEV;
int hmc; int hmc;
...@@ -3003,7 +3003,7 @@ static int __init omap_udc_probe(struct platform_device *pdev) ...@@ -3003,7 +3003,7 @@ static int __init omap_udc_probe(struct platform_device *pdev)
return status; return status;
} }
static int __exit omap_udc_remove(struct platform_device *pdev) static int __devexit omap_udc_remove(struct platform_device *pdev)
{ {
DECLARE_COMPLETION_ONSTACK(done); DECLARE_COMPLETION_ONSTACK(done);
...@@ -3088,7 +3088,8 @@ static int omap_udc_resume(struct platform_device *dev) ...@@ -3088,7 +3088,8 @@ static int omap_udc_resume(struct platform_device *dev)
/*-------------------------------------------------------------------------*/ /*-------------------------------------------------------------------------*/
static struct platform_driver udc_driver = { static struct platform_driver udc_driver = {
.remove = __exit_p(omap_udc_remove), .probe = omap_udc_probe,
.remove = __devexit_p(omap_udc_remove),
.suspend = omap_udc_suspend, .suspend = omap_udc_suspend,
.resume = omap_udc_resume, .resume = omap_udc_resume,
.driver = { .driver = {
...@@ -3097,17 +3098,7 @@ static struct platform_driver udc_driver = { ...@@ -3097,17 +3098,7 @@ static struct platform_driver udc_driver = {
}, },
}; };
static int __init udc_init(void) module_platform_driver(udc_driver);
{
return platform_driver_probe(&udc_driver, omap_udc_probe);
}
module_init(udc_init);
static void __exit udc_exit(void)
{
platform_driver_unregister(&udc_driver);
}
module_exit(udc_exit);
MODULE_DESCRIPTION(DRIVER_DESC); MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment