Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 464cad2c authored by Sachin Kamat's avatar Sachin Kamat Committed by Greg Kroah-Hartman
Browse files

staging: emxx_udc: Use module_platform_driver



module_platform_driver removes some boiler plate and makes
code simpler.

Signed-off-by: default avatarSachin Kamat <sachin.kamat@samsung.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a790ebc1
Loading
Loading
Loading
Loading
+1 −18
Original line number Diff line number Diff line
@@ -3511,24 +3511,7 @@ static struct platform_driver udc_driver = {
	},
};



/*-------------------------------------------------------------------------*/
/* module */

/*-------------------------------------------------------------------------*/
static int __init udc_init(void)
{
	return platform_driver_register(&udc_driver);
}
module_init(udc_init);

/*-------------------------------------------------------------------------*/
static void __exit udc_exit(void)
{
	platform_driver_unregister(&udc_driver);
}
module_exit(udc_exit);
module_platform_driver(udc_driver);

MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_AUTHOR("Renesas Electronics Corporation");