mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 07:12:09 +00:00
MISC: convert drivers/misc/* to use module_i2c_driver()
This patch converts the drivers in drivers/misc/* to use the module_i2c_driver() macro which makes the code smaller and a bit simpler. Signed-off-by: Axel Lin <axel.lin@gmail.com> Cc: Michael Hennerich <hennerich@blackfin.uclinux.org> Cc: Anantha Narayanan <Anantha.Narayanan@intel.com> Cc: Hemanth V <hemanthv@ti.com> Cc: Christoph Mair <christoph.mair@gmail.com> Cc: Grant Likely <grant.likely@secretlab.ca> Cc: Ben Gardner <bgardner@wabtec.com> Cc: Minkyu Kang <mk7.kang@samsung.com> Cc: Kalhan Trisal <kalhan.trisal@intel.com> Cc: Darrick J. Wong <djwong@us.ibm.com> Cc: Daniel Mack <zonque@gmail.com> Cc: Rodolfo Giometti <giometti@linux.it> Acked-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
b00e126ffe
commit
a64fe2ed76
16 changed files with 17 additions and 194 deletions
|
@ -256,19 +256,8 @@ static struct i2c_driver lis3lv02d_i2c_driver = {
|
|||
.id_table = lis3lv02d_id,
|
||||
};
|
||||
|
||||
static int __init lis3lv02d_init(void)
|
||||
{
|
||||
return i2c_add_driver(&lis3lv02d_i2c_driver);
|
||||
}
|
||||
|
||||
static void __exit lis3lv02d_exit(void)
|
||||
{
|
||||
i2c_del_driver(&lis3lv02d_i2c_driver);
|
||||
}
|
||||
module_i2c_driver(lis3lv02d_i2c_driver);
|
||||
|
||||
MODULE_AUTHOR("Nokia Corporation");
|
||||
MODULE_DESCRIPTION("lis3lv02d I2C interface");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
module_init(lis3lv02d_init);
|
||||
module_exit(lis3lv02d_exit);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue