diff options
Diffstat (limited to 'drivers/hwmon/adm9240.c')
-rw-r--r-- | drivers/hwmon/adm9240.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/hwmon/adm9240.c b/drivers/hwmon/adm9240.c index 3f63f5f9741d..64e7ef885411 100644 --- a/drivers/hwmon/adm9240.c +++ b/drivers/hwmon/adm9240.c | |||
@@ -795,21 +795,9 @@ static struct adm9240_data *adm9240_update_device(struct device *dev) | |||
795 | return data; | 795 | return data; |
796 | } | 796 | } |
797 | 797 | ||
798 | static int __init sensors_adm9240_init(void) | 798 | module_i2c_driver(adm9240_driver); |
799 | { | ||
800 | return i2c_add_driver(&adm9240_driver); | ||
801 | } | ||
802 | |||
803 | static void __exit sensors_adm9240_exit(void) | ||
804 | { | ||
805 | i2c_del_driver(&adm9240_driver); | ||
806 | } | ||
807 | 799 | ||
808 | MODULE_AUTHOR("Michiel Rook <michiel@grendelproject.nl>, " | 800 | MODULE_AUTHOR("Michiel Rook <michiel@grendelproject.nl>, " |
809 | "Grant Coady <gcoady.lk@gmail.com> and others"); | 801 | "Grant Coady <gcoady.lk@gmail.com> and others"); |
810 | MODULE_DESCRIPTION("ADM9240/DS1780/LM81 driver"); | 802 | MODULE_DESCRIPTION("ADM9240/DS1780/LM81 driver"); |
811 | MODULE_LICENSE("GPL"); | 803 | MODULE_LICENSE("GPL"); |
812 | |||
813 | module_init(sensors_adm9240_init); | ||
814 | module_exit(sensors_adm9240_exit); | ||
815 | |||