blob: ac067fd1948212a42d3972696dbccc771238da05 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 lm77.c - Part of lm_sensors, Linux kernel modules for hardware
3 monitoring
4
5 Copyright (c) 2004 Andras BALI <drewie@freemail.hu>
6
7 Heavily based on lm75.c by Frodo Looijaard <frodol@dds.nl>. The LM77
8 is a temperature sensor and thermal window comparator with 0.5 deg
9 resolution made by National Semiconductor. Complete datasheet can be
10 obtained at their site:
11 http://www.national.com/pf/LM/LM77.html
12
13 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26*/
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
29#include <linux/init.h>
30#include <linux/slab.h>
31#include <linux/jiffies.h>
32#include <linux/i2c.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040033#include <linux/hwmon.h>
Jean Delvare1f52af02008-01-03 23:35:33 +010034#include <linux/hwmon-sysfs.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040035#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010036#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/* Addresses to scan */
Mark M. Hoffman25e9c862008-02-17 22:28:03 -050039static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b,
40 I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/* Insmod parameters */
Jean Delvaref4b50262005-07-31 21:49:03 +020043I2C_CLIENT_INSMOD_1(lm77);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45/* The LM77 registers */
46#define LM77_REG_TEMP 0x00
47#define LM77_REG_CONF 0x01
48#define LM77_REG_TEMP_HYST 0x02
49#define LM77_REG_TEMP_CRIT 0x03
50#define LM77_REG_TEMP_MIN 0x04
51#define LM77_REG_TEMP_MAX 0x05
52
53/* Each client has this additional data */
54struct lm77_data {
Tony Jones1beeffe2007-08-20 13:46:20 -070055 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +010056 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 char valid;
58 unsigned long last_updated; /* In jiffies */
59 int temp_input; /* Temperatures */
60 int temp_crit;
61 int temp_min;
62 int temp_max;
63 int temp_hyst;
64 u8 alarms;
65};
66
Jean Delvarea189dd62008-07-16 19:30:13 +020067static int lm77_probe(struct i2c_client *client,
68 const struct i2c_device_id *id);
69static int lm77_detect(struct i2c_client *client, int kind,
70 struct i2c_board_info *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071static void lm77_init_client(struct i2c_client *client);
Jean Delvarea189dd62008-07-16 19:30:13 +020072static int lm77_remove(struct i2c_client *client);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073static u16 lm77_read_value(struct i2c_client *client, u8 reg);
74static int lm77_write_value(struct i2c_client *client, u8 reg, u16 value);
75
76static struct lm77_data *lm77_update_device(struct device *dev);
77
78
Jean Delvarea189dd62008-07-16 19:30:13 +020079static const struct i2c_device_id lm77_id[] = {
80 { "lm77", lm77 },
81 { }
82};
83MODULE_DEVICE_TABLE(i2c, lm77_id);
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/* This is the driver that will be inserted */
86static struct i2c_driver lm77_driver = {
Jean Delvarea189dd62008-07-16 19:30:13 +020087 .class = I2C_CLASS_HWMON,
Laurent Riffardcdaf7932005-11-26 20:37:41 +010088 .driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +010089 .name = "lm77",
90 },
Jean Delvarea189dd62008-07-16 19:30:13 +020091 .probe = lm77_probe,
92 .remove = lm77_remove,
93 .id_table = lm77_id,
94 .detect = lm77_detect,
95 .address_data = &addr_data,
Linus Torvalds1da177e2005-04-16 15:20:36 -070096};
97
98/* straight from the datasheet */
99#define LM77_TEMP_MIN (-55000)
100#define LM77_TEMP_MAX 125000
101
102/* In the temperature registers, the low 3 bits are not part of the
103 temperature values; they are the status bits. */
Jean Delvare413b6452006-01-09 22:43:08 +0100104static inline s16 LM77_TEMP_TO_REG(int temp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
106 int ntemp = SENSORS_LIMIT(temp, LM77_TEMP_MIN, LM77_TEMP_MAX);
Jean Delvare413b6452006-01-09 22:43:08 +0100107 return (ntemp / 500) * 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
Jean Delvare413b6452006-01-09 22:43:08 +0100110static inline int LM77_TEMP_FROM_REG(s16 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Jean Delvare413b6452006-01-09 22:43:08 +0100112 return (reg / 8) * 500;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
115/* sysfs stuff */
116
117/* read routines for temperature limits */
118#define show(value) \
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400119static ssize_t show_##value(struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{ \
121 struct lm77_data *data = lm77_update_device(dev); \
122 return sprintf(buf, "%d\n", data->value); \
123}
124
125show(temp_input);
126show(temp_crit);
127show(temp_min);
128show(temp_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/* read routines for hysteresis values */
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400131static ssize_t show_temp_crit_hyst(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
133 struct lm77_data *data = lm77_update_device(dev);
134 return sprintf(buf, "%d\n", data->temp_crit - data->temp_hyst);
135}
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400136static ssize_t show_temp_min_hyst(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 struct lm77_data *data = lm77_update_device(dev);
139 return sprintf(buf, "%d\n", data->temp_min + data->temp_hyst);
140}
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400141static ssize_t show_temp_max_hyst(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
143 struct lm77_data *data = lm77_update_device(dev);
144 return sprintf(buf, "%d\n", data->temp_max - data->temp_hyst);
145}
146
147/* write routines */
148#define set(value, reg) \
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400149static ssize_t set_##value(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{ \
151 struct i2c_client *client = to_i2c_client(dev); \
152 struct lm77_data *data = i2c_get_clientdata(client); \
Christian Hohnstaedt5bfedac2007-08-16 11:40:10 +0200153 long val = simple_strtol(buf, NULL, 10); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100155 mutex_lock(&data->update_lock); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 data->value = val; \
157 lm77_write_value(client, reg, LM77_TEMP_TO_REG(data->value)); \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100158 mutex_unlock(&data->update_lock); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return count; \
160}
161
162set(temp_min, LM77_REG_TEMP_MIN);
163set(temp_max, LM77_REG_TEMP_MAX);
164
165/* hysteresis is stored as a relative value on the chip, so it has to be
166 converted first */
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400167static ssize_t set_temp_crit_hyst(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
169 struct i2c_client *client = to_i2c_client(dev);
170 struct lm77_data *data = i2c_get_clientdata(client);
171 unsigned long val = simple_strtoul(buf, NULL, 10);
172
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100173 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 data->temp_hyst = data->temp_crit - val;
175 lm77_write_value(client, LM77_REG_TEMP_HYST,
176 LM77_TEMP_TO_REG(data->temp_hyst));
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100177 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 return count;
179}
180
181/* preserve hysteresis when setting T_crit */
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400182static ssize_t set_temp_crit(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
184 struct i2c_client *client = to_i2c_client(dev);
185 struct lm77_data *data = i2c_get_clientdata(client);
186 long val = simple_strtoul(buf, NULL, 10);
187 int oldcrithyst;
188
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100189 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 oldcrithyst = data->temp_crit - data->temp_hyst;
191 data->temp_crit = val;
192 data->temp_hyst = data->temp_crit - oldcrithyst;
193 lm77_write_value(client, LM77_REG_TEMP_CRIT,
194 LM77_TEMP_TO_REG(data->temp_crit));
195 lm77_write_value(client, LM77_REG_TEMP_HYST,
196 LM77_TEMP_TO_REG(data->temp_hyst));
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100197 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return count;
199}
200
Jean Delvare1f52af02008-01-03 23:35:33 +0100201static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
202 char *buf)
203{
204 int bitnr = to_sensor_dev_attr(attr)->index;
205 struct lm77_data *data = lm77_update_device(dev);
206 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
207}
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209static DEVICE_ATTR(temp1_input, S_IRUGO,
210 show_temp_input, NULL);
211static DEVICE_ATTR(temp1_crit, S_IWUSR | S_IRUGO,
212 show_temp_crit, set_temp_crit);
213static DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO,
214 show_temp_min, set_temp_min);
215static DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO,
216 show_temp_max, set_temp_max);
217
218static DEVICE_ATTR(temp1_crit_hyst, S_IWUSR | S_IRUGO,
219 show_temp_crit_hyst, set_temp_crit_hyst);
220static DEVICE_ATTR(temp1_min_hyst, S_IRUGO,
221 show_temp_min_hyst, NULL);
222static DEVICE_ATTR(temp1_max_hyst, S_IRUGO,
223 show_temp_max_hyst, NULL);
224
Jean Delvare1f52af02008-01-03 23:35:33 +0100225static SENSOR_DEVICE_ATTR(temp1_crit_alarm, S_IRUGO, show_alarm, NULL, 2);
226static SENSOR_DEVICE_ATTR(temp1_min_alarm, S_IRUGO, show_alarm, NULL, 0);
227static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200229static struct attribute *lm77_attributes[] = {
230 &dev_attr_temp1_input.attr,
231 &dev_attr_temp1_crit.attr,
232 &dev_attr_temp1_min.attr,
233 &dev_attr_temp1_max.attr,
234 &dev_attr_temp1_crit_hyst.attr,
235 &dev_attr_temp1_min_hyst.attr,
236 &dev_attr_temp1_max_hyst.attr,
Jean Delvare1f52af02008-01-03 23:35:33 +0100237 &sensor_dev_attr_temp1_crit_alarm.dev_attr.attr,
238 &sensor_dev_attr_temp1_min_alarm.dev_attr.attr,
239 &sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200240 NULL
241};
242
243static const struct attribute_group lm77_group = {
244 .attrs = lm77_attributes,
245};
246
Jean Delvarea189dd62008-07-16 19:30:13 +0200247/* Return 0 if detection is successful, -ENODEV otherwise */
248static int lm77_detect(struct i2c_client *new_client, int kind,
249 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Jean Delvarea189dd62008-07-16 19:30:13 +0200251 struct i2c_adapter *adapter = new_client->adapter;
Jean Delvare747d9be2009-12-09 20:35:52 +0100252 int i, cur, conf, hyst, crit, min, max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA |
255 I2C_FUNC_SMBUS_WORD_DATA))
Jean Delvarea189dd62008-07-16 19:30:13 +0200256 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 /* Here comes the remaining detection. Since the LM77 has no
259 register dedicated to identification, we have to rely on the
260 following tricks:
261
262 1. the high 4 bits represent the sign and thus they should
263 always be the same
264 2. the high 3 bits are unused in the configuration register
265 3. addresses 0x06 and 0x07 return the last read value
266 4. registers cycling over 8-address boundaries
267
268 Word-sized registers are high-byte first. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Jean Delvare747d9be2009-12-09 20:35:52 +0100270 /* addresses cycling */
271 cur = i2c_smbus_read_word_data(new_client, 0);
272 conf = i2c_smbus_read_byte_data(new_client, 1);
273 hyst = i2c_smbus_read_word_data(new_client, 2);
274 crit = i2c_smbus_read_word_data(new_client, 3);
275 min = i2c_smbus_read_word_data(new_client, 4);
276 max = i2c_smbus_read_word_data(new_client, 5);
277 for (i = 8; i <= 0xff; i += 8) {
278 if (i2c_smbus_read_byte_data(new_client, i + 1) != conf
279 || i2c_smbus_read_word_data(new_client, i + 2) != hyst
280 || i2c_smbus_read_word_data(new_client, i + 3) != crit
281 || i2c_smbus_read_word_data(new_client, i + 4) != min
282 || i2c_smbus_read_word_data(new_client, i + 5) != max)
Jean Delvarea189dd62008-07-16 19:30:13 +0200283 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
285
Jean Delvare747d9be2009-12-09 20:35:52 +0100286 /* sign bits */
287 if (((cur & 0x00f0) != 0xf0 && (cur & 0x00f0) != 0x0)
288 || ((hyst & 0x00f0) != 0xf0 && (hyst & 0x00f0) != 0x0)
289 || ((crit & 0x00f0) != 0xf0 && (crit & 0x00f0) != 0x0)
290 || ((min & 0x00f0) != 0xf0 && (min & 0x00f0) != 0x0)
291 || ((max & 0x00f0) != 0xf0 && (max & 0x00f0) != 0x0))
292 return -ENODEV;
293
294 /* unused bits */
295 if (conf & 0xe0)
296 return -ENODEV;
297
298 /* 0x06 and 0x07 return the last read value */
299 cur = i2c_smbus_read_word_data(new_client, 0);
300 if (i2c_smbus_read_word_data(new_client, 6) != cur
301 || i2c_smbus_read_word_data(new_client, 7) != cur)
302 return -ENODEV;
303 hyst = i2c_smbus_read_word_data(new_client, 2);
304 if (i2c_smbus_read_word_data(new_client, 6) != hyst
305 || i2c_smbus_read_word_data(new_client, 7) != hyst)
306 return -ENODEV;
307 min = i2c_smbus_read_word_data(new_client, 4);
308 if (i2c_smbus_read_word_data(new_client, 6) != min
309 || i2c_smbus_read_word_data(new_client, 7) != min)
310 return -ENODEV;
311
Jean Delvarea189dd62008-07-16 19:30:13 +0200312 strlcpy(info->type, "lm77", I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Jean Delvarea189dd62008-07-16 19:30:13 +0200314 return 0;
315}
316
317static int lm77_probe(struct i2c_client *new_client,
318 const struct i2c_device_id *id)
319{
320 struct lm77_data *data;
321 int err;
322
323 data = kzalloc(sizeof(struct lm77_data), GFP_KERNEL);
324 if (!data) {
325 err = -ENOMEM;
326 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
328
Jean Delvarea189dd62008-07-16 19:30:13 +0200329 i2c_set_clientdata(new_client, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 data->valid = 0;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100331 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 /* Initialize the LM77 chip */
334 lm77_init_client(new_client);
335
336 /* Register sysfs hooks */
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200337 if ((err = sysfs_create_group(&new_client->dev.kobj, &lm77_group)))
Jean Delvarea189dd62008-07-16 19:30:13 +0200338 goto exit_free;
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200339
Tony Jones1beeffe2007-08-20 13:46:20 -0700340 data->hwmon_dev = hwmon_device_register(&new_client->dev);
341 if (IS_ERR(data->hwmon_dev)) {
342 err = PTR_ERR(data->hwmon_dev);
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200343 goto exit_remove;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400344 }
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return 0;
347
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200348exit_remove:
349 sysfs_remove_group(&new_client->dev.kobj, &lm77_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350exit_free:
351 kfree(data);
352exit:
353 return err;
354}
355
Jean Delvarea189dd62008-07-16 19:30:13 +0200356static int lm77_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400358 struct lm77_data *data = i2c_get_clientdata(client);
Tony Jones1beeffe2007-08-20 13:46:20 -0700359 hwmon_device_unregister(data->hwmon_dev);
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200360 sysfs_remove_group(&client->dev.kobj, &lm77_group);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400361 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return 0;
363}
364
365/* All registers are word-sized, except for the configuration register.
366 The LM77 uses the high-byte first convention. */
367static u16 lm77_read_value(struct i2c_client *client, u8 reg)
368{
369 if (reg == LM77_REG_CONF)
370 return i2c_smbus_read_byte_data(client, reg);
371 else
372 return swab16(i2c_smbus_read_word_data(client, reg));
373}
374
375static int lm77_write_value(struct i2c_client *client, u8 reg, u16 value)
376{
377 if (reg == LM77_REG_CONF)
378 return i2c_smbus_write_byte_data(client, reg, value);
379 else
380 return i2c_smbus_write_word_data(client, reg, swab16(value));
381}
382
383static void lm77_init_client(struct i2c_client *client)
384{
385 /* Initialize the LM77 chip - turn off shutdown mode */
386 int conf = lm77_read_value(client, LM77_REG_CONF);
387 if (conf & 1)
388 lm77_write_value(client, LM77_REG_CONF, conf & 0xfe);
389}
390
391static struct lm77_data *lm77_update_device(struct device *dev)
392{
393 struct i2c_client *client = to_i2c_client(dev);
394 struct lm77_data *data = i2c_get_clientdata(client);
395
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100396 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
399 || !data->valid) {
400 dev_dbg(&client->dev, "Starting lm77 update\n");
401 data->temp_input =
402 LM77_TEMP_FROM_REG(lm77_read_value(client,
403 LM77_REG_TEMP));
404 data->temp_hyst =
405 LM77_TEMP_FROM_REG(lm77_read_value(client,
406 LM77_REG_TEMP_HYST));
407 data->temp_crit =
408 LM77_TEMP_FROM_REG(lm77_read_value(client,
409 LM77_REG_TEMP_CRIT));
410 data->temp_min =
411 LM77_TEMP_FROM_REG(lm77_read_value(client,
412 LM77_REG_TEMP_MIN));
413 data->temp_max =
414 LM77_TEMP_FROM_REG(lm77_read_value(client,
415 LM77_REG_TEMP_MAX));
416 data->alarms =
417 lm77_read_value(client, LM77_REG_TEMP) & 0x0007;
418 data->last_updated = jiffies;
419 data->valid = 1;
420 }
421
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100422 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 return data;
425}
426
427static int __init sensors_lm77_init(void)
428{
429 return i2c_add_driver(&lm77_driver);
430}
431
432static void __exit sensors_lm77_exit(void)
433{
434 i2c_del_driver(&lm77_driver);
435}
436
437MODULE_AUTHOR("Andras BALI <drewie@freemail.hu>");
438MODULE_DESCRIPTION("LM77 driver");
439MODULE_LICENSE("GPL");
440
441module_init(sensors_lm77_init);
442module_exit(sensors_lm77_exit);