diff options
author | Srinivas Kandagatla <srinivas.kandagatla@st.com> | 2012-10-10 14:37:28 -0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2012-10-16 05:49:12 -0400 |
commit | ca21dda64b756d6fe965dfe8fd0a1f320874b4b5 (patch) | |
tree | db60eb5365c77d98ce8bcfdca0ca3989ed7cc014 /drivers/usb/otg/mv_otg.c | |
parent | 8355b0208a44904741dbd78fea6f203c3556699a (diff) |
usb: phy: mv_otg: 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/otg/mv_otg.c')
-rw-r--r-- | drivers/usb/otg/mv_otg.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/usb/otg/mv_otg.c b/drivers/usb/otg/mv_otg.c index 3f124e8f5792..1dd57504186d 100644 --- a/drivers/usb/otg/mv_otg.c +++ b/drivers/usb/otg/mv_otg.c | |||
@@ -958,16 +958,4 @@ static struct platform_driver mv_otg_driver = { | |||
958 | .resume = mv_otg_resume, | 958 | .resume = mv_otg_resume, |
959 | #endif | 959 | #endif |
960 | }; | 960 | }; |
961 | 961 | module_platform_driver(mv_otg_driver); | |
962 | static int __init mv_otg_init(void) | ||
963 | { | ||
964 | return platform_driver_register(&mv_otg_driver); | ||
965 | } | ||
966 | |||
967 | static void __exit mv_otg_exit(void) | ||
968 | { | ||
969 | platform_driver_unregister(&mv_otg_driver); | ||
970 | } | ||
971 | |||
972 | module_init(mv_otg_init); | ||
973 | module_exit(mv_otg_exit); | ||