summaryrefslogtreecommitdiffstats
path: root/drivers/usb/otg
diff options
context:
space:
mode:
authorSrinivas Kandagatla2012-10-10 20:37:28 +0200
committerFelipe Balbi2012-10-16 11:49:12 +0200
commitca21dda64b756d6fe965dfe8fd0a1f320874b4b5 (patch)
treedb60eb5365c77d98ce8bcfdca0ca3989ed7cc014 /drivers/usb/otg
parentusb: phy: tegra remove include of <mach/iomap.h> (diff)
downloadkernel-qcow2-linux-ca21dda64b756d6fe965dfe8fd0a1f320874b4b5.tar.gz
kernel-qcow2-linux-ca21dda64b756d6fe965dfe8fd0a1f320874b4b5.tar.xz
kernel-qcow2-linux-ca21dda64b756d6fe965dfe8fd0a1f320874b4b5.zip
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')
-rw-r--r--drivers/usb/otg/mv_otg.c14
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 = {
.resume = mv_otg_resume,
#endif
};
-
-static int __init mv_otg_init(void)
-{
- return platform_driver_register(&mv_otg_driver);
-}
-
-static void __exit mv_otg_exit(void)
-{
- platform_driver_unregister(&mv_otg_driver);
-}
-
-module_init(mv_otg_init);
-module_exit(mv_otg_exit);
+module_platform_driver(mv_otg_driver);