diff options
Diffstat (limited to 'drivers/hwmon/max6642.c')
-rw-r--r-- | drivers/hwmon/max6642.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/hwmon/max6642.c b/drivers/hwmon/max6642.c index 209e8a526eb1..4298909a41fd 100644 --- a/drivers/hwmon/max6642.c +++ b/drivers/hwmon/max6642.c | |||
@@ -352,19 +352,8 @@ static struct i2c_driver max6642_driver = { | |||
352 | .address_list = normal_i2c, | 352 | .address_list = normal_i2c, |
353 | }; | 353 | }; |
354 | 354 | ||
355 | static int __init max6642_init(void) | 355 | module_i2c_driver(max6642_driver); |
356 | { | ||
357 | return i2c_add_driver(&max6642_driver); | ||
358 | } | ||
359 | |||
360 | static void __exit max6642_exit(void) | ||
361 | { | ||
362 | i2c_del_driver(&max6642_driver); | ||
363 | } | ||
364 | 356 | ||
365 | MODULE_AUTHOR("Per Dalen <per.dalen@appeartv.com>"); | 357 | MODULE_AUTHOR("Per Dalen <per.dalen@appeartv.com>"); |
366 | MODULE_DESCRIPTION("MAX6642 sensor driver"); | 358 | MODULE_DESCRIPTION("MAX6642 sensor driver"); |
367 | MODULE_LICENSE("GPL"); | 359 | MODULE_LICENSE("GPL"); |
368 | |||
369 | module_init(max6642_init); | ||
370 | module_exit(max6642_exit); | ||