Commit 6d034059 authored by Shubhrajyoti Datta's avatar Shubhrajyoti Datta Committed by Jean Delvare

hwmon: (lm75) Add support for the Texas Instruments TMP105

Add support for the Texas Instruments TMP105 temperature sensor
device.
Signed-off-by: default avatarShubhrajyoti Datta <shubhrajyoti@ti.com>
Acked-by: default avatarJonathan Cameron <jic23@cam.ac.uk>
Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
parent df16dd53
...@@ -493,7 +493,8 @@ config SENSORS_LM75 ...@@ -493,7 +493,8 @@ config SENSORS_LM75
- NXP's LM75A - NXP's LM75A
- ST Microelectronics STDS75 - ST Microelectronics STDS75
- TelCom (now Microchip) TCN75 - TelCom (now Microchip) TCN75
- Texas Instruments TMP100, TMP101, TMP75, TMP175, TMP275 - Texas Instruments TMP100, TMP101, TMP105, TMP75, TMP175,
TMP275
This driver supports driver model based binding through board This driver supports driver model based binding through board
specific I2C device tables. specific I2C device tables.
......
...@@ -46,6 +46,7 @@ enum lm75_type { /* keep sorted in alphabetical order */ ...@@ -46,6 +46,7 @@ enum lm75_type { /* keep sorted in alphabetical order */
tcn75, tcn75,
tmp100, tmp100,
tmp101, tmp101,
tmp105,
tmp175, tmp175,
tmp275, tmp275,
tmp75, tmp75,
...@@ -220,6 +221,7 @@ static const struct i2c_device_id lm75_ids[] = { ...@@ -220,6 +221,7 @@ static const struct i2c_device_id lm75_ids[] = {
{ "tcn75", tcn75, }, { "tcn75", tcn75, },
{ "tmp100", tmp100, }, { "tmp100", tmp100, },
{ "tmp101", tmp101, }, { "tmp101", tmp101, },
{ "tmp105", tmp105, },
{ "tmp175", tmp175, }, { "tmp175", tmp175, },
{ "tmp275", tmp275, }, { "tmp275", tmp275, },
{ "tmp75", tmp75, }, { "tmp75", tmp75, },
......
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