1
0
Fork 0

[media] davinci_vpfe: Use module_platform_driver macro

module_platform_driver() eliminates the boilerplate and simplifies
the code.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Acked-by: Lad, Prabhakar <prabhakar.lad@ti.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
hifive-unleashed-5.1
Sachin Kamat 2013-03-05 07:52:14 -03:00 committed by Mauro Carvalho Chehab
parent 01c8132303
commit 18ace0e273
1 changed files with 1 additions and 19 deletions

View File

@ -719,22 +719,4 @@ static struct platform_driver vpfe_driver = {
.remove = vpfe_remove,
};
/**
* vpfe_init : This function registers device driver
*/
static __init int vpfe_init(void)
{
/* Register driver to the kernel */
return platform_driver_register(&vpfe_driver);
}
/**
* vpfe_cleanup : This function un-registers device driver
*/
static void vpfe_cleanup(void)
{
platform_driver_unregister(&vpfe_driver);
}
module_init(vpfe_init);
module_exit(vpfe_cleanup);
module_platform_driver(vpfe_driver);