mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 08:02:30 +00:00
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>
This commit is contained in:
parent
8355b0208a
commit
ca21dda64b
1 changed files with 1 additions and 13 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue