mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
eeprom: ee1004: use module_i2c_driver to simplify the code
Use the module_i2c_driver() macro to make the code smaller and a bit simpler. Signed-off-by: Liu Shixin <liushixin2@huawei.com> Link: https://lore.kernel.org/r/20200918030225.3902750-1-liushixin2@huawei.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
03c95e591a
commit
4292aa977f
@ -280,18 +280,7 @@ static struct i2c_driver ee1004_driver = {
|
||||
.remove = ee1004_remove,
|
||||
.id_table = ee1004_ids,
|
||||
};
|
||||
|
||||
static int __init ee1004_init(void)
|
||||
{
|
||||
return i2c_add_driver(&ee1004_driver);
|
||||
}
|
||||
module_init(ee1004_init);
|
||||
|
||||
static void __exit ee1004_exit(void)
|
||||
{
|
||||
i2c_del_driver(&ee1004_driver);
|
||||
}
|
||||
module_exit(ee1004_exit);
|
||||
module_i2c_driver(ee1004_driver);
|
||||
|
||||
MODULE_DESCRIPTION("Driver for EE1004-compliant DDR4 SPD EEPROMs");
|
||||
MODULE_AUTHOR("Jean Delvare");
|
||||
|
Loading…
Reference in New Issue
Block a user