diff options
Diffstat (limited to 'drivers/hwmon/ltc4245.c')
-rw-r--r-- | drivers/hwmon/ltc4245.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/hwmon/ltc4245.c b/drivers/hwmon/ltc4245.c index 659308329308..693a6bd4e5de 100644 --- a/drivers/hwmon/ltc4245.c +++ b/drivers/hwmon/ltc4245.c | |||
@@ -578,19 +578,8 @@ static struct i2c_driver ltc4245_driver = { | |||
578 | .id_table = ltc4245_id, | 578 | .id_table = ltc4245_id, |
579 | }; | 579 | }; |
580 | 580 | ||
581 | static int __init ltc4245_init(void) | 581 | module_i2c_driver(ltc4245_driver); |
582 | { | ||
583 | return i2c_add_driver(<c4245_driver); | ||
584 | } | ||
585 | |||
586 | static void __exit ltc4245_exit(void) | ||
587 | { | ||
588 | i2c_del_driver(<c4245_driver); | ||
589 | } | ||
590 | 582 | ||
591 | MODULE_AUTHOR("Ira W. Snyder <iws@ovro.caltech.edu>"); | 583 | MODULE_AUTHOR("Ira W. Snyder <iws@ovro.caltech.edu>"); |
592 | MODULE_DESCRIPTION("LTC4245 driver"); | 584 | MODULE_DESCRIPTION("LTC4245 driver"); |
593 | MODULE_LICENSE("GPL"); | 585 | MODULE_LICENSE("GPL"); |
594 | |||
595 | module_init(ltc4245_init); | ||
596 | module_exit(ltc4245_exit); | ||