mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-18 17:54:13 +08:00
staging: cptm1217: use module_i2c_driver macro
use the module_i2c_driver and remove the reimplementation of module_i2c_driver Signed-off-by: Devendra Naga <devendra.aaru@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1228cd13f9
commit
c993e432ed
@ -658,18 +658,7 @@ static struct i2c_driver cp_tm1217_driver = {
|
||||
.resume = cp_tm1217_resume,
|
||||
};
|
||||
|
||||
static int __init clearpad_tm1217_init(void)
|
||||
{
|
||||
return i2c_add_driver(&cp_tm1217_driver);
|
||||
}
|
||||
|
||||
static void __exit clearpad_tm1217_exit(void)
|
||||
{
|
||||
i2c_del_driver(&cp_tm1217_driver);
|
||||
}
|
||||
|
||||
module_init(clearpad_tm1217_init);
|
||||
module_exit(clearpad_tm1217_exit);
|
||||
module_i2c_driver(cp_tm1217_driver);
|
||||
|
||||
MODULE_AUTHOR("Ramesh Agarwal <ramesh.agarwal@intel.com>");
|
||||
MODULE_DESCRIPTION("Synaptics TM1217 TouchScreen Driver");
|
||||
|
Loading…
Reference in New Issue
Block a user