Skip to content

Commit

Permalink
usb: phy: mv_otg: use module_platform_driver macro
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Srinivas Kandagatla authored and Felipe Balbi committed Oct 16, 2012
1 parent 8355b02 commit ca21dda
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions drivers/usb/otg/mv_otg.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

0 comments on commit ca21dda

Please sign in to comment.