diff options
Diffstat (limited to 'drivers/hwmon/ltc4261.c')
-rw-r--r-- | drivers/hwmon/ltc4261.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/hwmon/ltc4261.c b/drivers/hwmon/ltc4261.c index ce5235560f01..ab1bfbf2a3f0 100644 --- a/drivers/hwmon/ltc4261.c +++ b/drivers/hwmon/ltc4261.c | |||
@@ -297,19 +297,8 @@ static struct i2c_driver ltc4261_driver = { | |||
297 | .id_table = ltc4261_id, | 297 | .id_table = ltc4261_id, |
298 | }; | 298 | }; |
299 | 299 | ||
300 | static int __init ltc4261_init(void) | 300 | module_i2c_driver(ltc4261_driver); |
301 | { | ||
302 | return i2c_add_driver(<c4261_driver); | ||
303 | } | ||
304 | |||
305 | static void __exit ltc4261_exit(void) | ||
306 | { | ||
307 | i2c_del_driver(<c4261_driver); | ||
308 | } | ||
309 | 301 | ||
310 | MODULE_AUTHOR("Guenter Roeck <guenter.roeck@ericsson.com>"); | 302 | MODULE_AUTHOR("Guenter Roeck <guenter.roeck@ericsson.com>"); |
311 | MODULE_DESCRIPTION("LTC4261 driver"); | 303 | MODULE_DESCRIPTION("LTC4261 driver"); |
312 | MODULE_LICENSE("GPL"); | 304 | MODULE_LICENSE("GPL"); |
313 | |||
314 | module_init(ltc4261_init); | ||
315 | module_exit(ltc4261_exit); | ||