[media] drivers: media: use module_platform_driver_probe()
This patch converts the drivers to use the module_platform_driver_probe() macro which makes the code smaller and a bit simpler. Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com> [g.liakhovetski@gmx.de: also remove redundant .probe initialisation] Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
2400a1f89d
commit
8c31aeca67
1 changed files with 1 additions and 12 deletions
|
@ -1074,7 +1074,6 @@ err_clk_prepare_pclk:
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct platform_driver atmel_isi_driver = {
|
static struct platform_driver atmel_isi_driver = {
|
||||||
.probe = atmel_isi_probe,
|
|
||||||
.remove = atmel_isi_remove,
|
.remove = atmel_isi_remove,
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "atmel_isi",
|
.name = "atmel_isi",
|
||||||
|
@ -1082,17 +1081,7 @@ static struct platform_driver atmel_isi_driver = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init atmel_isi_init_module(void)
|
module_platform_driver_probe(atmel_isi_driver, atmel_isi_probe);
|
||||||
{
|
|
||||||
return platform_driver_probe(&atmel_isi_driver, &atmel_isi_probe);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void __exit atmel_isi_exit(void)
|
|
||||||
{
|
|
||||||
platform_driver_unregister(&atmel_isi_driver);
|
|
||||||
}
|
|
||||||
module_init(atmel_isi_init_module);
|
|
||||||
module_exit(atmel_isi_exit);
|
|
||||||
|
|
||||||
MODULE_AUTHOR("Josh Wu <josh.wu@atmel.com>");
|
MODULE_AUTHOR("Josh Wu <josh.wu@atmel.com>");
|
||||||
MODULE_DESCRIPTION("The V4L2 driver for Atmel Linux");
|
MODULE_DESCRIPTION("The V4L2 driver for Atmel Linux");
|
||||||
|
|
Loading…
Add table
Reference in a new issue