diff options
Diffstat (limited to 'drivers/hwmon/max1668.c')
-rw-r--r-- | drivers/hwmon/max1668.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/hwmon/max1668.c b/drivers/hwmon/max1668.c index 88953f99e914..12249f7bccf4 100644 --- a/drivers/hwmon/max1668.c +++ b/drivers/hwmon/max1668.c | |||
@@ -484,19 +484,8 @@ static struct i2c_driver max1668_driver = { | |||
484 | .address_list = max1668_addr_list, | 484 | .address_list = max1668_addr_list, |
485 | }; | 485 | }; |
486 | 486 | ||
487 | static int __init sensors_max1668_init(void) | 487 | module_i2c_driver(max1668_driver); |
488 | { | ||
489 | return i2c_add_driver(&max1668_driver); | ||
490 | } | ||
491 | |||
492 | static void __exit sensors_max1668_exit(void) | ||
493 | { | ||
494 | i2c_del_driver(&max1668_driver); | ||
495 | } | ||
496 | 488 | ||
497 | MODULE_AUTHOR("David George <david.george@ska.ac.za>"); | 489 | MODULE_AUTHOR("David George <david.george@ska.ac.za>"); |
498 | MODULE_DESCRIPTION("MAX1668 remote temperature sensor driver"); | 490 | MODULE_DESCRIPTION("MAX1668 remote temperature sensor driver"); |
499 | MODULE_LICENSE("GPL"); | 491 | MODULE_LICENSE("GPL"); |
500 | |||
501 | module_init(sensors_max1668_init) | ||
502 | module_exit(sensors_max1668_exit) | ||