mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-15 16:53:54 +08:00
i2c-smbus: Use module_i2c_driver()
Using module_i2c_driver() makes the code smaller and cleaner. Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> Signed-off-by: Jean Delvare <khali@linux-fr.org>
This commit is contained in:
parent
9cd3f2e849
commit
fda2f4af37
@ -245,18 +245,7 @@ int i2c_handle_smbus_alert(struct i2c_client *ara)
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(i2c_handle_smbus_alert);
|
EXPORT_SYMBOL_GPL(i2c_handle_smbus_alert);
|
||||||
|
|
||||||
static int __init i2c_smbus_init(void)
|
module_i2c_driver(smbalert_driver);
|
||||||
{
|
|
||||||
return i2c_add_driver(&smbalert_driver);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void __exit i2c_smbus_exit(void)
|
|
||||||
{
|
|
||||||
i2c_del_driver(&smbalert_driver);
|
|
||||||
}
|
|
||||||
|
|
||||||
module_init(i2c_smbus_init);
|
|
||||||
module_exit(i2c_smbus_exit);
|
|
||||||
|
|
||||||
MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org>");
|
MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org>");
|
||||||
MODULE_DESCRIPTION("SMBus protocol extensions support");
|
MODULE_DESCRIPTION("SMBus protocol extensions support");
|
||||||
|
Loading…
Reference in New Issue
Block a user