diff options
author | Srinivas Kandagatla <srinivas.kandagatla@st.com> | 2012-10-10 22:36:46 +0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2012-10-15 16:29:23 +0400 |
commit | a0a83eb407ef17dae9a286d86ee2a437f6adb4c2 (patch) | |
tree | a350a5727bd9bd4d0e8e6a84825d64b2e9b3423e /drivers/usb/musb/am35x.c | |
parent | ddffeb8c4d0331609ef2581d84de4d763607bd37 (diff) | |
download | linux-a0a83eb407ef17dae9a286d86ee2a437f6adb4c2.tar.xz |
usb: musb: am35x: use module_platform_driver macro
This patch removes some code duplication by using
module_platform_driver.
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@st.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/musb/am35x.c')
-rw-r--r-- | drivers/usb/musb/am35x.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/usb/musb/am35x.c b/drivers/usb/musb/am35x.c index 457f25e62c51..89b128bdbca4 100644 --- a/drivers/usb/musb/am35x.c +++ b/drivers/usb/musb/am35x.c @@ -648,15 +648,4 @@ static struct platform_driver am35x_driver = { MODULE_DESCRIPTION("AM35x MUSB Glue Layer"); MODULE_AUTHOR("Ajay Kumar Gupta <ajay.gupta@ti.com>"); MODULE_LICENSE("GPL v2"); - -static int __init am35x_init(void) -{ - return platform_driver_register(&am35x_driver); -} -module_init(am35x_init); - -static void __exit am35x_exit(void) -{ - platform_driver_unregister(&am35x_driver); -} -module_exit(am35x_exit); +module_platform_driver(am35x_driver); |