diff options
Diffstat (limited to 'drivers/hwmon/ltc4215.c')
-rw-r--r-- | drivers/hwmon/ltc4215.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/hwmon/ltc4215.c b/drivers/hwmon/ltc4215.c index c7e6d8e81656..0789b635ba86 100644 --- a/drivers/hwmon/ltc4215.c +++ b/drivers/hwmon/ltc4215.c | |||
@@ -309,19 +309,8 @@ static struct i2c_driver ltc4215_driver = { | |||
309 | .id_table = ltc4215_id, | 309 | .id_table = ltc4215_id, |
310 | }; | 310 | }; |
311 | 311 | ||
312 | static int __init ltc4215_init(void) | 312 | module_i2c_driver(ltc4215_driver); |
313 | { | ||
314 | return i2c_add_driver(<c4215_driver); | ||
315 | } | ||
316 | |||
317 | static void __exit ltc4215_exit(void) | ||
318 | { | ||
319 | i2c_del_driver(<c4215_driver); | ||
320 | } | ||
321 | 313 | ||
322 | MODULE_AUTHOR("Ira W. Snyder <iws@ovro.caltech.edu>"); | 314 | MODULE_AUTHOR("Ira W. Snyder <iws@ovro.caltech.edu>"); |
323 | MODULE_DESCRIPTION("LTC4215 driver"); | 315 | MODULE_DESCRIPTION("LTC4215 driver"); |
324 | MODULE_LICENSE("GPL"); | 316 | MODULE_LICENSE("GPL"); |
325 | |||
326 | module_init(ltc4215_init); | ||
327 | module_exit(ltc4215_exit); | ||