mfd: menelaus: Use module_i2c_driver
module_i2c_driver simplifies the code by eliminating boilerplate code. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
parent
8320513e8b
commit
1d3c7f5661
1 changed files with 1 additions and 22 deletions
|
@ -1287,29 +1287,8 @@ static struct i2c_driver menelaus_i2c_driver = {
|
||||||
.id_table = menelaus_id,
|
.id_table = menelaus_id,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init menelaus_init(void)
|
module_i2c_driver(menelaus_i2c_driver);
|
||||||
{
|
|
||||||
int res;
|
|
||||||
|
|
||||||
res = i2c_add_driver(&menelaus_i2c_driver);
|
|
||||||
if (res < 0) {
|
|
||||||
pr_err(DRIVER_NAME ": driver registration failed\n");
|
|
||||||
return res;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void __exit menelaus_exit(void)
|
|
||||||
{
|
|
||||||
i2c_del_driver(&menelaus_i2c_driver);
|
|
||||||
|
|
||||||
/* FIXME: Shutdown menelaus parts that can be shut down */
|
|
||||||
}
|
|
||||||
|
|
||||||
MODULE_AUTHOR("Texas Instruments, Inc. (and others)");
|
MODULE_AUTHOR("Texas Instruments, Inc. (and others)");
|
||||||
MODULE_DESCRIPTION("I2C interface for Menelaus.");
|
MODULE_DESCRIPTION("I2C interface for Menelaus.");
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
|
|
||||||
module_init(menelaus_init);
|
|
||||||
module_exit(menelaus_exit);
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue