Commit b8d067b6 authored by Lad, Prabhakar's avatar Lad, Prabhakar Committed by Mauro Carvalho Chehab

[media] media: davinci: vpif_display: use module_platform_driver()

This patch uses module_platform_driver() to simplify the code.
Signed-off-by: default avatarLad, Prabhakar <prabhakar.csengg@gmail.com>
Acked-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 0b361583
......@@ -1937,20 +1937,4 @@ static __refdata struct platform_driver vpif_driver = {
.remove = vpif_remove,
};
static __init int vpif_init(void)
{
return platform_driver_register(&vpif_driver);
}
/*
* vpif_cleanup: This function un-registers device and driver to the kernel,
* frees requested irq handler and de-allocates memory allocated for channel
* objects.
*/
static void vpif_cleanup(void)
{
platform_driver_unregister(&vpif_driver);
}
module_init(vpif_init);
module_exit(vpif_cleanup);
module_platform_driver(vpif_driver);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment