mirror of
https://github.com/torvalds/linux.git
synced 2024-12-22 10:56:40 +00:00
[media] soc_camera: Use module_platform_driver macro
module_platform_driver simplifies the code by eliminating module_init and module_exit calls. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
1aeed35575
commit
ec0341b3b7
@ -1586,18 +1586,7 @@ static struct platform_driver __refdata soc_camera_pdrv = {
|
||||
},
|
||||
};
|
||||
|
||||
static int __init soc_camera_init(void)
|
||||
{
|
||||
return platform_driver_register(&soc_camera_pdrv);
|
||||
}
|
||||
|
||||
static void __exit soc_camera_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&soc_camera_pdrv);
|
||||
}
|
||||
|
||||
module_init(soc_camera_init);
|
||||
module_exit(soc_camera_exit);
|
||||
module_platform_driver(soc_camera_pdrv);
|
||||
|
||||
MODULE_DESCRIPTION("Image capture bus driver");
|
||||
MODULE_AUTHOR("Guennadi Liakhovetski <kernel@pengutronix.de>");
|
||||
|
Loading…
Reference in New Issue
Block a user