usb: musb: blackfin: 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
a0a83eb407
commit
692373e128
1 changed files with 1 additions and 12 deletions
|
@ -585,15 +585,4 @@ static struct platform_driver bfin_driver = {
|
|||
MODULE_DESCRIPTION("Blackfin MUSB Glue Layer");
|
||||
MODULE_AUTHOR("Bryan Wy <cooloney@kernel.org>");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
||||
static int __init bfin_init(void)
|
||||
{
|
||||
return platform_driver_register(&bfin_driver);
|
||||
}
|
||||
module_init(bfin_init);
|
||||
|
||||
static void __exit bfin_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&bfin_driver);
|
||||
}
|
||||
module_exit(bfin_exit);
|
||||
module_platform_driver(bfin_driver);
|
||||
|
|
Loading…
Reference in a new issue