Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -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.
+2 −0
Original line number Original line Diff line number Diff line
@@ -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[] = {
	{ "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, },