Blame view

drivers/hwmon/lm83.c 10.5 KB
c942fddf8   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-or-later
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
  /*
   * lm83.c - Part of lm_sensors, Linux kernel modules for hardware
   *          monitoring
7c81c60f3   Jean Delvare   Update Jean Delva...
5
   * Copyright (C) 2003-2009  Jean Delvare <jdelvare@suse.de>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
6
7
8
9
10
11
12
13
14
15
   *
   * Heavily inspired from the lm78, lm75 and adm1021 drivers. The LM83 is
   * a sensor chip made by National Semiconductor. It reports up to four
   * temperatures (its own plus up to three external ones) with a 1 deg
   * resolution and a 3-4 deg accuracy. Complete datasheet can be obtained
   * from National's website at:
   *   http://www.national.com/pf/LM/LM83.html
   * Since the datasheet omits to give the chip stepping code, I give it
   * here: 0x03 (at register 0xff).
   *
43cb7ebee   Jordan Crouse   [PATCH] lm83: Add...
16
17
18
   * Also supports the LM82 temp sensor, which is basically a stripped down
   * model of the LM83.  Datasheet is here:
   * http://www.national.com/pf/LM/LM82.html
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
19
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
20
21
22
23
24
  #include <linux/module.h>
  #include <linux/init.h>
  #include <linux/slab.h>
  #include <linux/jiffies.h>
  #include <linux/i2c.h>
10c08f810   Jean Delvare   [PATCH] I2C: rena...
25
  #include <linux/hwmon-sysfs.h>
943b0830c   Mark M. Hoffman   [PATCH] I2C hwmon...
26
27
  #include <linux/hwmon.h>
  #include <linux/err.h>
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
28
  #include <linux/mutex.h>
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
29
  #include <linux/sysfs.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
30
31
32
33
34
35
  
  /*
   * Addresses to scan
   * Address is selected using 2 three-level pins, resulting in 9 possible
   * addresses.
   */
25e9c86d5   Mark M. Hoffman   hwmon: normal_i2c...
36
37
  static const unsigned short normal_i2c[] = {
  	0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b, 0x4c, 0x4d, 0x4e, I2C_CLIENT_END };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
38

e5e9f44c2   Jean Delvare   i2c: Drop I2C_CLI...
39
  enum chips { lm83, lm82 };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
  
  /*
   * The LM83 registers
   * Manufacturer ID is 0x01 for National Semiconductor.
   */
  
  #define LM83_REG_R_MAN_ID		0xFE
  #define LM83_REG_R_CHIP_ID		0xFF
  #define LM83_REG_R_CONFIG		0x03
  #define LM83_REG_W_CONFIG		0x09
  #define LM83_REG_R_STATUS1		0x02
  #define LM83_REG_R_STATUS2		0x35
  #define LM83_REG_R_LOCAL_TEMP		0x00
  #define LM83_REG_R_LOCAL_HIGH		0x05
  #define LM83_REG_W_LOCAL_HIGH		0x0B
  #define LM83_REG_R_REMOTE1_TEMP		0x30
  #define LM83_REG_R_REMOTE1_HIGH		0x38
  #define LM83_REG_W_REMOTE1_HIGH		0x50
  #define LM83_REG_R_REMOTE2_TEMP		0x01
  #define LM83_REG_R_REMOTE2_HIGH		0x07
  #define LM83_REG_W_REMOTE2_HIGH		0x0D
  #define LM83_REG_R_REMOTE3_TEMP		0x31
  #define LM83_REG_R_REMOTE3_HIGH		0x3A
  #define LM83_REG_W_REMOTE3_HIGH		0x52
  #define LM83_REG_R_TCRIT		0x42
  #define LM83_REG_W_TCRIT		0x5A
  
  /*
   * Conversions and various macros
44bbe87e9   Steven Cole   [PATCH] Spelling ...
69
   * The LM83 uses signed 8-bit values with LSB = 1 degree Celsius.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
70
71
72
73
74
75
76
77
78
79
80
81
   */
  
  #define TEMP_FROM_REG(val)	((val) * 1000)
  #define TEMP_TO_REG(val)	((val) <= -128000 ? -128 : \
  				 (val) >= 127000 ? 127 : \
  				 (val) < 0 ? ((val) - 500) / 1000 : \
  				 ((val) + 500) / 1000)
  
  static const u8 LM83_REG_R_TEMP[] = {
  	LM83_REG_R_LOCAL_TEMP,
  	LM83_REG_R_REMOTE1_TEMP,
  	LM83_REG_R_REMOTE2_TEMP,
1a86c0512   Jean Delvare   [PATCH] I2C: lm83...
82
  	LM83_REG_R_REMOTE3_TEMP,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
83
84
85
  	LM83_REG_R_LOCAL_HIGH,
  	LM83_REG_R_REMOTE1_HIGH,
  	LM83_REG_R_REMOTE2_HIGH,
1a86c0512   Jean Delvare   [PATCH] I2C: lm83...
86
87
  	LM83_REG_R_REMOTE3_HIGH,
  	LM83_REG_R_TCRIT,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
88
89
90
91
92
93
  };
  
  static const u8 LM83_REG_W_HIGH[] = {
  	LM83_REG_W_LOCAL_HIGH,
  	LM83_REG_W_REMOTE1_HIGH,
  	LM83_REG_W_REMOTE2_HIGH,
1a86c0512   Jean Delvare   [PATCH] I2C: lm83...
94
95
  	LM83_REG_W_REMOTE3_HIGH,
  	LM83_REG_W_TCRIT,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
96
97
98
  };
  
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
99
100
101
102
   * Client data (each client gets its own)
   */
  
  struct lm83_data {
a0ac840d9   Guenter Roeck   hwmon: (lm83) Con...
103
104
  	struct i2c_client *client;
  	const struct attribute_group *groups[3];
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
105
  	struct mutex update_lock;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
106
107
108
109
  	char valid; /* zero until following fields are valid */
  	unsigned long last_updated; /* in jiffies */
  
  	/* registers values */
1a86c0512   Jean Delvare   [PATCH] I2C: lm83...
110
111
112
  	s8 temp[9];	/* 0..3: input 1-4,
  			   4..7: high limit 1-4,
  			   8   : critical limit */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
113
114
  	u16 alarms; /* bitvector, combined */
  };
41936370f   Guenter Roeck   hwmon: (lm83) Rea...
115
116
  static struct lm83_data *lm83_update_device(struct device *dev)
  {
a0ac840d9   Guenter Roeck   hwmon: (lm83) Con...
117
118
  	struct lm83_data *data = dev_get_drvdata(dev);
  	struct i2c_client *client = data->client;
41936370f   Guenter Roeck   hwmon: (lm83) Rea...
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
  
  	mutex_lock(&data->update_lock);
  
  	if (time_after(jiffies, data->last_updated + HZ * 2) || !data->valid) {
  		int nr;
  
  		dev_dbg(&client->dev, "Updating lm83 data.
  ");
  		for (nr = 0; nr < 9; nr++) {
  			data->temp[nr] =
  			    i2c_smbus_read_byte_data(client,
  			    LM83_REG_R_TEMP[nr]);
  		}
  		data->alarms =
  		    i2c_smbus_read_byte_data(client, LM83_REG_R_STATUS1)
  		    + (i2c_smbus_read_byte_data(client, LM83_REG_R_STATUS2)
  		    << 8);
  
  		data->last_updated = jiffies;
  		data->valid = 1;
  	}
  
  	mutex_unlock(&data->update_lock);
  
  	return data;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
145
146
147
  /*
   * Sysfs stuff
   */
a9283c8fe   Guenter Roeck   hwmon: (lm83) Use...
148
  static ssize_t temp_show(struct device *dev, struct device_attribute *devattr,
1a86c0512   Jean Delvare   [PATCH] I2C: lm83...
149
150
151
152
153
154
  			 char *buf)
  {
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	struct lm83_data *data = lm83_update_device(dev);
  	return sprintf(buf, "%d
  ", TEMP_FROM_REG(data->temp[attr->index]));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
155
  }
1a86c0512   Jean Delvare   [PATCH] I2C: lm83...
156

a9283c8fe   Guenter Roeck   hwmon: (lm83) Use...
157
158
159
  static ssize_t temp_store(struct device *dev,
  			  struct device_attribute *devattr, const char *buf,
  			  size_t count)
1a86c0512   Jean Delvare   [PATCH] I2C: lm83...
160
161
  {
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
a0ac840d9   Guenter Roeck   hwmon: (lm83) Con...
162
163
  	struct lm83_data *data = dev_get_drvdata(dev);
  	struct i2c_client *client = data->client;
b3789a0de   Frans Meulenbroeks   hwmon: (lm83) fix...
164
  	long val;
1a86c0512   Jean Delvare   [PATCH] I2C: lm83...
165
  	int nr = attr->index;
b3789a0de   Frans Meulenbroeks   hwmon: (lm83) fix...
166
167
168
169
170
  	int err;
  
  	err = kstrtol(buf, 10, &val);
  	if (err < 0)
  		return err;
1a86c0512   Jean Delvare   [PATCH] I2C: lm83...
171

9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
172
  	mutex_lock(&data->update_lock);
1a86c0512   Jean Delvare   [PATCH] I2C: lm83...
173
174
175
  	data->temp[nr] = TEMP_TO_REG(val);
  	i2c_smbus_write_byte_data(client, LM83_REG_W_HIGH[nr - 4],
  				  data->temp[nr]);
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
176
  	mutex_unlock(&data->update_lock);
1a86c0512   Jean Delvare   [PATCH] I2C: lm83...
177
  	return count;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
178
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
179

14c05198b   Julia Lawall   hwmon: (lm83) use...
180
  static ssize_t alarms_show(struct device *dev, struct device_attribute *dummy,
1a86c0512   Jean Delvare   [PATCH] I2C: lm83...
181
  			   char *buf)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
182
183
184
185
186
  {
  	struct lm83_data *data = lm83_update_device(dev);
  	return sprintf(buf, "%d
  ", data->alarms);
  }
a9283c8fe   Guenter Roeck   hwmon: (lm83) Use...
187
188
  static ssize_t alarm_show(struct device *dev,
  			  struct device_attribute *devattr, char *buf)
2d45771e6   Jean Delvare   hwmon: Add indivi...
189
190
191
192
193
194
195
196
  {
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	struct lm83_data *data = lm83_update_device(dev);
  	int bitnr = attr->index;
  
  	return sprintf(buf, "%d
  ", (data->alarms >> bitnr) & 1);
  }
a9283c8fe   Guenter Roeck   hwmon: (lm83) Use...
197
198
199
200
201
202
203
204
205
206
207
208
  static SENSOR_DEVICE_ATTR_RO(temp1_input, temp, 0);
  static SENSOR_DEVICE_ATTR_RO(temp2_input, temp, 1);
  static SENSOR_DEVICE_ATTR_RO(temp3_input, temp, 2);
  static SENSOR_DEVICE_ATTR_RO(temp4_input, temp, 3);
  static SENSOR_DEVICE_ATTR_RW(temp1_max, temp, 4);
  static SENSOR_DEVICE_ATTR_RW(temp2_max, temp, 5);
  static SENSOR_DEVICE_ATTR_RW(temp3_max, temp, 6);
  static SENSOR_DEVICE_ATTR_RW(temp4_max, temp, 7);
  static SENSOR_DEVICE_ATTR_RO(temp1_crit, temp, 8);
  static SENSOR_DEVICE_ATTR_RO(temp2_crit, temp, 8);
  static SENSOR_DEVICE_ATTR_RW(temp3_crit, temp, 8);
  static SENSOR_DEVICE_ATTR_RO(temp4_crit, temp, 8);
2d45771e6   Jean Delvare   hwmon: Add indivi...
209
210
  
  /* Individual alarm files */
a9283c8fe   Guenter Roeck   hwmon: (lm83) Use...
211
212
213
214
215
216
217
218
219
220
221
  static SENSOR_DEVICE_ATTR_RO(temp1_crit_alarm, alarm, 0);
  static SENSOR_DEVICE_ATTR_RO(temp3_crit_alarm, alarm, 1);
  static SENSOR_DEVICE_ATTR_RO(temp3_fault, alarm, 2);
  static SENSOR_DEVICE_ATTR_RO(temp3_max_alarm, alarm, 4);
  static SENSOR_DEVICE_ATTR_RO(temp1_max_alarm, alarm, 6);
  static SENSOR_DEVICE_ATTR_RO(temp2_crit_alarm, alarm, 8);
  static SENSOR_DEVICE_ATTR_RO(temp4_crit_alarm, alarm, 9);
  static SENSOR_DEVICE_ATTR_RO(temp4_fault, alarm, 10);
  static SENSOR_DEVICE_ATTR_RO(temp4_max_alarm, alarm, 12);
  static SENSOR_DEVICE_ATTR_RO(temp2_fault, alarm, 13);
  static SENSOR_DEVICE_ATTR_RO(temp2_max_alarm, alarm, 15);
2d45771e6   Jean Delvare   hwmon: Add indivi...
222
  /* Raw alarm file for compatibility */
14c05198b   Julia Lawall   hwmon: (lm83) use...
223
  static DEVICE_ATTR_RO(alarms);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
224

0e39e01c9   Jean Delvare   hwmon: Fix unchec...
225
226
227
228
229
230
231
232
233
234
  static struct attribute *lm83_attributes[] = {
  	&sensor_dev_attr_temp1_input.dev_attr.attr,
  	&sensor_dev_attr_temp3_input.dev_attr.attr,
  	&sensor_dev_attr_temp1_max.dev_attr.attr,
  	&sensor_dev_attr_temp3_max.dev_attr.attr,
  	&sensor_dev_attr_temp1_crit.dev_attr.attr,
  	&sensor_dev_attr_temp3_crit.dev_attr.attr,
  
  	&sensor_dev_attr_temp1_crit_alarm.dev_attr.attr,
  	&sensor_dev_attr_temp3_crit_alarm.dev_attr.attr,
7817a39e6   Jean Delvare   hwmon: Fault file...
235
  	&sensor_dev_attr_temp3_fault.dev_attr.attr,
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
  	&sensor_dev_attr_temp3_max_alarm.dev_attr.attr,
  	&sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
  	&dev_attr_alarms.attr,
  	NULL
  };
  
  static const struct attribute_group lm83_group = {
  	.attrs = lm83_attributes,
  };
  
  static struct attribute *lm83_attributes_opt[] = {
  	&sensor_dev_attr_temp2_input.dev_attr.attr,
  	&sensor_dev_attr_temp4_input.dev_attr.attr,
  	&sensor_dev_attr_temp2_max.dev_attr.attr,
  	&sensor_dev_attr_temp4_max.dev_attr.attr,
  	&sensor_dev_attr_temp2_crit.dev_attr.attr,
  	&sensor_dev_attr_temp4_crit.dev_attr.attr,
  
  	&sensor_dev_attr_temp2_crit_alarm.dev_attr.attr,
  	&sensor_dev_attr_temp4_crit_alarm.dev_attr.attr,
7817a39e6   Jean Delvare   hwmon: Fault file...
256
  	&sensor_dev_attr_temp4_fault.dev_attr.attr,
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
257
  	&sensor_dev_attr_temp4_max_alarm.dev_attr.attr,
7817a39e6   Jean Delvare   hwmon: Fault file...
258
  	&sensor_dev_attr_temp2_fault.dev_attr.attr,
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
259
260
261
262
263
264
265
  	&sensor_dev_attr_temp2_max_alarm.dev_attr.attr,
  	NULL
  };
  
  static const struct attribute_group lm83_group_opt = {
  	.attrs = lm83_attributes_opt,
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
266
267
268
  /*
   * Real code
   */
b6aacdcef   Jean Delvare   hwmon: (lm83) Con...
269
  /* Return 0 if detection is successful, -ENODEV otherwise */
310ec7921   Jean Delvare   i2c: Drop the kin...
270
  static int lm83_detect(struct i2c_client *new_client,
b6aacdcef   Jean Delvare   hwmon: (lm83) Con...
271
  		       struct i2c_board_info *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
272
  {
b6aacdcef   Jean Delvare   hwmon: (lm83) Con...
273
  	struct i2c_adapter *adapter = new_client->adapter;
b57dc3940   Jean Delvare   hwmon: (lm83) Cle...
274
275
  	const char *name;
  	u8 man_id, chip_id;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
276
277
  
  	if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
b6aacdcef   Jean Delvare   hwmon: (lm83) Con...
278
  		return -ENODEV;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
279

b57dc3940   Jean Delvare   hwmon: (lm83) Cle...
280
281
282
283
284
285
286
287
  	/* Detection */
  	if ((i2c_smbus_read_byte_data(new_client, LM83_REG_R_STATUS1) & 0xA8) ||
  	    (i2c_smbus_read_byte_data(new_client, LM83_REG_R_STATUS2) & 0x48) ||
  	    (i2c_smbus_read_byte_data(new_client, LM83_REG_R_CONFIG) & 0x41)) {
  		dev_dbg(&adapter->dev, "LM83 detection failed at 0x%02x
  ",
  			new_client->addr);
  		return -ENODEV;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
288
  	}
b57dc3940   Jean Delvare   hwmon: (lm83) Cle...
289
290
291
292
  	/* Identification */
  	man_id = i2c_smbus_read_byte_data(new_client, LM83_REG_R_MAN_ID);
  	if (man_id != 0x01)	/* National Semiconductor */
  		return -ENODEV;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
293

b57dc3940   Jean Delvare   hwmon: (lm83) Cle...
294
295
296
  	chip_id = i2c_smbus_read_byte_data(new_client, LM83_REG_R_CHIP_ID);
  	switch (chip_id) {
  	case 0x03:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
297
  		name = "lm83";
b57dc3940   Jean Delvare   hwmon: (lm83) Cle...
298
299
  		break;
  	case 0x01:
43cb7ebee   Jordan Crouse   [PATCH] lm83: Add...
300
  		name = "lm82";
b57dc3940   Jean Delvare   hwmon: (lm83) Cle...
301
302
303
304
305
306
307
308
  		break;
  	default:
  		/* identification failed */
  		dev_info(&adapter->dev,
  			 "Unsupported chip (man_id=0x%02X, chip_id=0x%02X)
  ",
  			 man_id, chip_id);
  		return -ENODEV;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
309
  	}
b6aacdcef   Jean Delvare   hwmon: (lm83) Con...
310
311
312
313
  	strlcpy(info->type, name, I2C_NAME_SIZE);
  
  	return 0;
  }
674870385   Stephen Kitt   hwmon: use simple...
314
315
316
  static const struct i2c_device_id lm83_id[];
  
  static int lm83_probe(struct i2c_client *new_client)
b6aacdcef   Jean Delvare   hwmon: (lm83) Con...
317
  {
a0ac840d9   Guenter Roeck   hwmon: (lm83) Con...
318
  	struct device *hwmon_dev;
b6aacdcef   Jean Delvare   hwmon: (lm83) Con...
319
  	struct lm83_data *data;
b6aacdcef   Jean Delvare   hwmon: (lm83) Con...
320

c087f73a2   Guenter Roeck   hwmon: (lm83) Con...
321
322
323
324
  	data = devm_kzalloc(&new_client->dev, sizeof(struct lm83_data),
  			    GFP_KERNEL);
  	if (!data)
  		return -ENOMEM;
b6aacdcef   Jean Delvare   hwmon: (lm83) Con...
325

a0ac840d9   Guenter Roeck   hwmon: (lm83) Con...
326
  	data->client = new_client;
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
327
  	mutex_init(&data->update_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
328

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
329
  	/*
0e39e01c9   Jean Delvare   hwmon: Fix unchec...
330
  	 * Register sysfs hooks
43cb7ebee   Jordan Crouse   [PATCH] lm83: Add...
331
332
333
334
  	 * The LM82 can only monitor one external diode which is
  	 * at the same register as the LM83 temp3 entry - so we
  	 * declare 1 and 3 common, and then 2 and 4 only for the LM83.
  	 */
a0ac840d9   Guenter Roeck   hwmon: (lm83) Con...
335
  	data->groups[0] = &lm83_group;
674870385   Stephen Kitt   hwmon: use simple...
336
  	if (i2c_match_id(lm83_id, new_client)->driver_data == lm83)
a0ac840d9   Guenter Roeck   hwmon: (lm83) Con...
337
338
339
340
341
342
  		data->groups[1] = &lm83_group_opt;
  
  	hwmon_dev = devm_hwmon_device_register_with_groups(&new_client->dev,
  							   new_client->name,
  							   data, data->groups);
  	return PTR_ERR_OR_ZERO(hwmon_dev);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
343
  }
41936370f   Guenter Roeck   hwmon: (lm83) Rea...
344
345
346
  /*
   * Driver data (common to all clients)
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
347

41936370f   Guenter Roeck   hwmon: (lm83) Rea...
348
349
350
351
352
353
  static const struct i2c_device_id lm83_id[] = {
  	{ "lm83", lm83 },
  	{ "lm82", lm82 },
  	{ }
  };
  MODULE_DEVICE_TABLE(i2c, lm83_id);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
354

41936370f   Guenter Roeck   hwmon: (lm83) Rea...
355
356
357
358
359
  static struct i2c_driver lm83_driver = {
  	.class		= I2C_CLASS_HWMON,
  	.driver = {
  		.name	= "lm83",
  	},
674870385   Stephen Kitt   hwmon: use simple...
360
  	.probe_new	= lm83_probe,
41936370f   Guenter Roeck   hwmon: (lm83) Rea...
361
362
363
364
  	.id_table	= lm83_id,
  	.detect		= lm83_detect,
  	.address_list	= normal_i2c,
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
365

f0967eea8   Axel Lin   hwmon: convert dr...
366
  module_i2c_driver(lm83_driver);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
367

7c81c60f3   Jean Delvare   Update Jean Delva...
368
  MODULE_AUTHOR("Jean Delvare <jdelvare@suse.de>");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
369
370
  MODULE_DESCRIPTION("LM83 driver");
  MODULE_LICENSE("GPL");