linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC][PATCH] Add support for TMP105
@ 2010-05-25 12:12 Datta, Shubhrajyoti
  2010-05-25 12:21 ` Jonathan Cameron
  0 siblings, 1 reply; 3+ messages in thread
From: Datta, Shubhrajyoti @ 2010-05-25 12:12 UTC (permalink / raw)
  To: linux-omap@vger.kernel.org; +Cc: linux-input@vger.kernel.org


Adds the driver support for the TMP105 temperature sensor device. The
interface is I2C.The driver supports the read of the temperature values.

Signed-off-by: Shubhrajyoti D <shubhrajyoti@ti.com>
---
 drivers/hwmon/Kconfig |    3 ++-
 drivers/hwmon/lm75.c  |    2 ++
 2 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/drivers/hwmon/Kconfig b/drivers/hwmon/Kconfig
index a4a5352..7a137d5 100644
--- a/drivers/hwmon/Kconfig
+++ b/drivers/hwmon/Kconfig
@@ -483,7 +483,8 @@ config SENSORS_LM75
 		- NXP's LM75A
 		- ST Microelectronics STDS75
 		- 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
 	  specific I2C device tables.
diff --git a/drivers/hwmon/lm75.c b/drivers/hwmon/lm75.c
index 8ae2cfe..5646342 100644
--- a/drivers/hwmon/lm75.c
+++ b/drivers/hwmon/lm75.c
@@ -46,6 +46,7 @@ enum lm75_type {		/* keep sorted in alphabetical order */
 	tcn75,
 	tmp100,
 	tmp101,
+	tmp105,
 	tmp175,
 	tmp275,
 	tmp75,
@@ -220,6 +221,7 @@ static const struct i2c_device_id lm75_ids[] = {
 	{ "tcn75", tcn75, },
 	{ "tmp100", tmp100, },
 	{ "tmp101", tmp101, },
+	{ "tmp105", tmp105, },
 	{ "tmp175", tmp175, },
 	{ "tmp275", tmp275, },
 	{ "tmp75", tmp75, },
-- 
1.5.4.7


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [RFC][PATCH] Add support for TMP105
  2010-05-25 12:12 [RFC][PATCH] Add support for TMP105 Datta, Shubhrajyoti
@ 2010-05-25 12:21 ` Jonathan Cameron
  2010-05-26  6:53   ` Jean Delvare
  0 siblings, 1 reply; 3+ messages in thread
From: Jonathan Cameron @ 2010-05-25 12:21 UTC (permalink / raw)
  To: Datta, Shubhrajyoti
  Cc: linux-omap@vger.kernel.org, linux-input@vger.kernel.org,
	LM Sensors

On 05/25/10 13:12, Datta, Shubhrajyoti wrote:
> 
> Adds the driver support for the TMP105 temperature sensor device. The
> interface is I2C.The driver supports the read of the temperature values.
> 
Still on the wrong list... cc'ing lm-sensors...
Please check MAINTAINERS for the correct mailing list for patches.


> Signed-off-by: Shubhrajyoti D <shubhrajyoti@ti.com>
Acked-by: Jonathan Cameron <jic23@cam.ac.uk>
> ---
>  drivers/hwmon/Kconfig |    3 ++-
>  drivers/hwmon/lm75.c  |    2 ++
>  2 files changed, 4 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/hwmon/Kconfig b/drivers/hwmon/Kconfig
> index a4a5352..7a137d5 100644
> --- a/drivers/hwmon/Kconfig
> +++ b/drivers/hwmon/Kconfig
> @@ -483,7 +483,8 @@ config SENSORS_LM75
>  		- NXP's LM75A
>  		- ST Microelectronics STDS75
>  		- 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
>  	  specific I2C device tables.
> diff --git a/drivers/hwmon/lm75.c b/drivers/hwmon/lm75.c
> index 8ae2cfe..5646342 100644
> --- a/drivers/hwmon/lm75.c
> +++ b/drivers/hwmon/lm75.c
> @@ -46,6 +46,7 @@ enum lm75_type {		/* keep sorted in alphabetical order */
>  	tcn75,
>  	tmp100,
>  	tmp101,
> +	tmp105,
>  	tmp175,
>  	tmp275,
>  	tmp75,
> @@ -220,6 +221,7 @@ static const struct i2c_device_id lm75_ids[] = {
>  	{ "tcn75", tcn75, },
>  	{ "tmp100", tmp100, },
>  	{ "tmp101", tmp101, },
> +	{ "tmp105", tmp105, },
>  	{ "tmp175", tmp175, },
>  	{ "tmp275", tmp275, },
>  	{ "tmp75", tmp75, },


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [RFC][PATCH] Add support for TMP105
  2010-05-25 12:21 ` Jonathan Cameron
@ 2010-05-26  6:53   ` Jean Delvare
  0 siblings, 0 replies; 3+ messages in thread
From: Jean Delvare @ 2010-05-26  6:53 UTC (permalink / raw)
  To: Datta, Shubhrajyoti
  Cc: Jonathan Cameron, linux-omap@vger.kernel.org, LM Sensors,
	linux-input@vger.kernel.org

On Tue, 25 May 2010 13:21:27 +0100, Jonathan Cameron wrote:
> On 05/25/10 13:12, Datta, Shubhrajyoti wrote:
> > 
> > Adds the driver support for the TMP105 temperature sensor device. The
> > interface is I2C.The driver supports the read of the temperature values.
> > 
> Still on the wrong list... cc'ing lm-sensors...
> Please check MAINTAINERS for the correct mailing list for patches.

Please re-send this patch to me and the lm-sensors list. Otherwise I
can't apply it.

> > Signed-off-by: Shubhrajyoti D <shubhrajyoti@ti.com>
> Acked-by: Jonathan Cameron <jic23@cam.ac.uk>
> > ---
> >  drivers/hwmon/Kconfig |    3 ++-
> >  drivers/hwmon/lm75.c  |    2 ++
> >  2 files changed, 4 insertions(+), 1 deletions(-)
> > 
> > diff --git a/drivers/hwmon/Kconfig b/drivers/hwmon/Kconfig
> > index a4a5352..7a137d5 100644
> > --- a/drivers/hwmon/Kconfig
> > +++ b/drivers/hwmon/Kconfig
> > @@ -483,7 +483,8 @@ config SENSORS_LM75
> >  		- NXP's LM75A
> >  		- ST Microelectronics STDS75
> >  		- 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
> >  	  specific I2C device tables.
> > diff --git a/drivers/hwmon/lm75.c b/drivers/hwmon/lm75.c
> > index 8ae2cfe..5646342 100644
> > --- a/drivers/hwmon/lm75.c
> > +++ b/drivers/hwmon/lm75.c
> > @@ -46,6 +46,7 @@ enum lm75_type {		/* keep sorted in alphabetical order */
> >  	tcn75,
> >  	tmp100,
> >  	tmp101,
> > +	tmp105,
> >  	tmp175,
> >  	tmp275,
> >  	tmp75,
> > @@ -220,6 +221,7 @@ static const struct i2c_device_id lm75_ids[] = {
> >  	{ "tcn75", tcn75, },
> >  	{ "tmp100", tmp100, },
> >  	{ "tmp101", tmp101, },
> > +	{ "tmp105", tmp105, },
> >  	{ "tmp175", tmp175, },
> >  	{ "tmp275", tmp275, },
> >  	{ "tmp75", tmp75, },

-- 
Jean Delvare

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-05-26  6:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-25 12:12 [RFC][PATCH] Add support for TMP105 Datta, Shubhrajyoti
2010-05-25 12:21 ` Jonathan Cameron
2010-05-26  6:53   ` Jean Delvare

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).