[media] i2c: vs6624: use module_i2c_driver to simplify the code
Use the module_i2c_driver() macro to make the code smaller and a bit simpler. dpatch engine is used to auto generate this patch. (https://github.com/weiyj/dpatch) Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Acked-by: Scott Jiang <scott.jiang.linux@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
74ffbf86db
commit
9ac1510407
|
@ -910,18 +910,7 @@ static struct i2c_driver vs6624_driver = {
|
||||||
.id_table = vs6624_id,
|
.id_table = vs6624_id,
|
||||||
};
|
};
|
||||||
|
|
||||||
static __init int vs6624_init(void)
|
module_i2c_driver(vs6624_driver);
|
||||||
{
|
|
||||||
return i2c_add_driver(&vs6624_driver);
|
|
||||||
}
|
|
||||||
|
|
||||||
static __exit void vs6624_exit(void)
|
|
||||||
{
|
|
||||||
i2c_del_driver(&vs6624_driver);
|
|
||||||
}
|
|
||||||
|
|
||||||
module_init(vs6624_init);
|
|
||||||
module_exit(vs6624_exit);
|
|
||||||
|
|
||||||
MODULE_DESCRIPTION("VS6624 sensor driver");
|
MODULE_DESCRIPTION("VS6624 sensor driver");
|
||||||
MODULE_AUTHOR("Scott Jiang <Scott.Jiang.Linux@gmail.com>");
|
MODULE_AUTHOR("Scott Jiang <Scott.Jiang.Linux@gmail.com>");
|
||||||
|
|
Loading…
Reference in New Issue