Commit e96f9d89 authored by Michael Hennerich's avatar Michael Hennerich Committed by Guenter Roeck

hwmon: (lm75) Add support for Analog Devices ADT75

Add datasheet reference and device ID for ADT75.

The ADT75, like some other LM75 derivatives, needs to be instantiated
using methods 1, 2, or 4.
For more information see Documentation/i2c/instantiating-devices.
Signed-off-by: default avatarMichael Hennerich <michael.hennerich@analog.com>
Acked-by: default avatarJonathan Cameron <jic23@cam.ac.uk>
Acked-by: default avatarJean Delvare <khali@linux-fr.org>
Signed-off-by: default avatarGuenter Roeck <guenter.roeck@ericsson.com>
parent 1af1f531
...@@ -32,6 +32,11 @@ Supported chips: ...@@ -32,6 +32,11 @@ Supported chips:
Addresses scanned: I2C 0x48 - 0x4f Addresses scanned: I2C 0x48 - 0x4f
Datasheet: Publicly available at the Microchip website Datasheet: Publicly available at the Microchip website
http://www.microchip.com/ http://www.microchip.com/
* Analog Devices ADT75
Prefix: 'adt75'
Addresses scanned: I2C 0x48 - 0x4f
Datasheet: Publicly available at the Analog Devices website
http://www.analog.com/adt75
Author: Frodo Looijaard <frodol@dds.nl> Author: Frodo Looijaard <frodol@dds.nl>
......
...@@ -551,6 +551,7 @@ config SENSORS_LM75 ...@@ -551,6 +551,7 @@ config SENSORS_LM75
If you say yes here you get support for one common type of If you say yes here you get support for one common type of
temperature sensor chip, with models including: temperature sensor chip, with models including:
- Analog Devices ADT75
- Dallas Semiconductor DS75 and DS1775 - Dallas Semiconductor DS75 and DS1775
- Maxim MAX6625 and MAX6626 - Maxim MAX6625 and MAX6626
- Microchip MCP980x - Microchip MCP980x
......
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
*/ */
enum lm75_type { /* keep sorted in alphabetical order */ enum lm75_type { /* keep sorted in alphabetical order */
adt75,
ds1775, ds1775,
ds75, ds75,
lm75, lm75,
...@@ -213,6 +214,7 @@ static int lm75_remove(struct i2c_client *client) ...@@ -213,6 +214,7 @@ static int lm75_remove(struct i2c_client *client)
} }
static const struct i2c_device_id lm75_ids[] = { static const struct i2c_device_id lm75_ids[] = {
{ "adt75", adt75, },
{ "ds1775", ds1775, }, { "ds1775", ds1775, },
{ "ds75", ds75, }, { "ds75", ds75, },
{ "lm75", lm75, }, { "lm75", lm75, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment