aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator/lp3971.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/regulator/lp3971.c')
-rw-r--r--drivers/regulator/lp3971.c18
1 files changed, 1 insertions, 17 deletions
diff --git a/drivers/regulator/lp3971.c b/drivers/regulator/lp3971.c
index 49bcdb034895..2013525f4bf9 100644
--- a/drivers/regulator/lp3971.c
+++ b/drivers/regulator/lp3971.c
@@ -517,23 +517,7 @@ static struct i2c_driver lp3971_i2c_driver = {
517 .id_table = lp3971_i2c_id, 517 .id_table = lp3971_i2c_id,
518}; 518};
519 519
520static int __init lp3971_module_init(void) 520module_i2c_driver(lp3971_i2c_driver);
521{
522 int ret;
523
524 ret = i2c_add_driver(&lp3971_i2c_driver);
525 if (ret != 0)
526 pr_err("Failed to register I2C driver: %d\n", ret);
527
528 return ret;
529}
530module_init(lp3971_module_init);
531
532static void __exit lp3971_module_exit(void)
533{
534 i2c_del_driver(&lp3971_i2c_driver);
535}
536module_exit(lp3971_module_exit);
537 521
538MODULE_LICENSE("GPL"); 522MODULE_LICENSE("GPL");
539MODULE_AUTHOR("Marek Szyprowski <m.szyprowski@samsung.com>"); 523MODULE_AUTHOR("Marek Szyprowski <m.szyprowski@samsung.com>");