All of lore.kernel.org
 help / color / mirror / Atom feed
* [lm-sensors] [PATCH V2] hwmon:lm75 add support for the Analog
@ 2011-10-13  8:43 michael.hennerich
  2011-10-13  8:46 ` Jonathan Cameron
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: michael.hennerich @ 2011-10-13  8:43 UTC (permalink / raw)
  To: lm-sensors

From: Michael Hennerich <michael.hennerich@analog.com>

Changes since V1:

Remove depreciated ADT75 device detection support.
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: Michael Hennerich <michael.hennerich@analog.com>
---
 Documentation/hwmon/lm75 |    5 +++++
 drivers/hwmon/Kconfig    |    1 +
 drivers/hwmon/lm75.c     |    2 ++
 3 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/Documentation/hwmon/lm75 b/Documentation/hwmon/lm75
index a179040..8d40d0f 100644
--- a/Documentation/hwmon/lm75
+++ b/Documentation/hwmon/lm75
@@ -32,6 +32,11 @@ Supported chips:
     Addresses scanned: I2C 0x48 - 0x4f
     Datasheet: Publicly available at the Microchip website
                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>

diff --git a/drivers/hwmon/Kconfig b/drivers/hwmon/Kconfig
index 0b62c3c..497fd14 100644
--- a/drivers/hwmon/Kconfig
+++ b/drivers/hwmon/Kconfig
@@ -531,6 +531,7 @@ config SENSORS_LM75
 	  If you say yes here you get support for one common type of
 	  temperature sensor chip, with models including:

+		- Analog Devices ADT75
 		- Dallas Semiconductor DS75 and DS1775
 		- Maxim MAX6625 and MAX6626
 		- Microchip MCP980x
diff --git a/drivers/hwmon/lm75.c b/drivers/hwmon/lm75.c
index ef902d5..669481b 100644
--- a/drivers/hwmon/lm75.c
+++ b/drivers/hwmon/lm75.c
@@ -35,6 +35,7 @@
  */

 enum lm75_type {		/* keep sorted in alphabetical order */
+	adt75,
 	ds1775,
 	ds75,
 	lm75,
@@ -213,6 +214,7 @@ static int lm75_remove(struct i2c_client *client)
 }

 static const struct i2c_device_id lm75_ids[] = {
+	{ "adt75", adt75, },
 	{ "ds1775", ds1775, },
 	{ "ds75", ds75, },
 	{ "lm75", lm75, },
--
1.7.0.4



_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

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

* Re: [lm-sensors] [PATCH V2] hwmon:lm75 add support for the Analog
  2011-10-13  8:43 [lm-sensors] [PATCH V2] hwmon:lm75 add support for the Analog michael.hennerich
@ 2011-10-13  8:46 ` Jonathan Cameron
  2011-10-13  8:47 ` Jean Delvare
  2011-10-13 15:12 ` Guenter Roeck
  2 siblings, 0 replies; 4+ messages in thread
From: Jonathan Cameron @ 2011-10-13  8:46 UTC (permalink / raw)
  To: lm-sensors

On 10/13/11 09:43, michael.hennerich@analog.com wrote:
> From: Michael Hennerich <michael.hennerich@analog.com>
> 
> Changes since V1:
> 
> Remove depreciated ADT75 device detection support.
> 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: Michael Hennerich <michael.hennerich@analog.com>
Acked-by: Jonathan Cameron <jic23@cam.ac.uk>
(For what it is worth on a now obvious trivial patch!)
> ---
>  Documentation/hwmon/lm75 |    5 +++++
>  drivers/hwmon/Kconfig    |    1 +
>  drivers/hwmon/lm75.c     |    2 ++
>  3 files changed, 8 insertions(+), 0 deletions(-)
> 
> diff --git a/Documentation/hwmon/lm75 b/Documentation/hwmon/lm75
> index a179040..8d40d0f 100644
> --- a/Documentation/hwmon/lm75
> +++ b/Documentation/hwmon/lm75
> @@ -32,6 +32,11 @@ Supported chips:
>      Addresses scanned: I2C 0x48 - 0x4f
>      Datasheet: Publicly available at the Microchip website
>                 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>
> 
> diff --git a/drivers/hwmon/Kconfig b/drivers/hwmon/Kconfig
> index 0b62c3c..497fd14 100644
> --- a/drivers/hwmon/Kconfig
> +++ b/drivers/hwmon/Kconfig
> @@ -531,6 +531,7 @@ config SENSORS_LM75
>  	  If you say yes here you get support for one common type of
>  	  temperature sensor chip, with models including:
> 
> +		- Analog Devices ADT75
>  		- Dallas Semiconductor DS75 and DS1775
>  		- Maxim MAX6625 and MAX6626
>  		- Microchip MCP980x
> diff --git a/drivers/hwmon/lm75.c b/drivers/hwmon/lm75.c
> index ef902d5..669481b 100644
> --- a/drivers/hwmon/lm75.c
> +++ b/drivers/hwmon/lm75.c
> @@ -35,6 +35,7 @@
>   */
> 
>  enum lm75_type {		/* keep sorted in alphabetical order */
> +	adt75,
>  	ds1775,
>  	ds75,
>  	lm75,
> @@ -213,6 +214,7 @@ static int lm75_remove(struct i2c_client *client)
>  }
> 
>  static const struct i2c_device_id lm75_ids[] = {
> +	{ "adt75", adt75, },
>  	{ "ds1775", ds1775, },
>  	{ "ds75", ds75, },
>  	{ "lm75", lm75, },
> --
> 1.7.0.4
> 
> 


_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

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

* Re: [lm-sensors] [PATCH V2] hwmon:lm75 add support for the Analog
  2011-10-13  8:43 [lm-sensors] [PATCH V2] hwmon:lm75 add support for the Analog michael.hennerich
  2011-10-13  8:46 ` Jonathan Cameron
@ 2011-10-13  8:47 ` Jean Delvare
  2011-10-13 15:12 ` Guenter Roeck
  2 siblings, 0 replies; 4+ messages in thread
From: Jean Delvare @ 2011-10-13  8:47 UTC (permalink / raw)
  To: lm-sensors

On Thu, 13 Oct 2011 10:43:31 +0200, michael.hennerich@analog.com wrote:
> From: Michael Hennerich <michael.hennerich@analog.com>
> 
> Changes since V1:
> 
> Remove depreciated ADT75 device detection support.
> 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: Michael Hennerich <michael.hennerich@analog.com>

Acked-by: Jean Delvare <khali@linux-fr.org>

I'll let Guenter pick the patch as he has a working development tree
while at the moment I do not.

> ---
>  Documentation/hwmon/lm75 |    5 +++++
>  drivers/hwmon/Kconfig    |    1 +
>  drivers/hwmon/lm75.c     |    2 ++
>  3 files changed, 8 insertions(+), 0 deletions(-)
> 
> diff --git a/Documentation/hwmon/lm75 b/Documentation/hwmon/lm75
> index a179040..8d40d0f 100644
> --- a/Documentation/hwmon/lm75
> +++ b/Documentation/hwmon/lm75
> @@ -32,6 +32,11 @@ Supported chips:
>      Addresses scanned: I2C 0x48 - 0x4f
>      Datasheet: Publicly available at the Microchip website
>                 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>
> 
> diff --git a/drivers/hwmon/Kconfig b/drivers/hwmon/Kconfig
> index 0b62c3c..497fd14 100644
> --- a/drivers/hwmon/Kconfig
> +++ b/drivers/hwmon/Kconfig
> @@ -531,6 +531,7 @@ config SENSORS_LM75
>  	  If you say yes here you get support for one common type of
>  	  temperature sensor chip, with models including:
> 
> +		- Analog Devices ADT75
>  		- Dallas Semiconductor DS75 and DS1775
>  		- Maxim MAX6625 and MAX6626
>  		- Microchip MCP980x
> diff --git a/drivers/hwmon/lm75.c b/drivers/hwmon/lm75.c
> index ef902d5..669481b 100644
> --- a/drivers/hwmon/lm75.c
> +++ b/drivers/hwmon/lm75.c
> @@ -35,6 +35,7 @@
>   */
> 
>  enum lm75_type {		/* keep sorted in alphabetical order */
> +	adt75,
>  	ds1775,
>  	ds75,
>  	lm75,
> @@ -213,6 +214,7 @@ static int lm75_remove(struct i2c_client *client)
>  }
> 
>  static const struct i2c_device_id lm75_ids[] = {
> +	{ "adt75", adt75, },
>  	{ "ds1775", ds1775, },
>  	{ "ds75", ds75, },
>  	{ "lm75", lm75, },
> --
> 1.7.0.4
> 
> 


-- 
Jean Delvare

_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

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

* Re: [lm-sensors] [PATCH V2] hwmon:lm75 add support for the Analog
  2011-10-13  8:43 [lm-sensors] [PATCH V2] hwmon:lm75 add support for the Analog michael.hennerich
  2011-10-13  8:46 ` Jonathan Cameron
  2011-10-13  8:47 ` Jean Delvare
@ 2011-10-13 15:12 ` Guenter Roeck
  2 siblings, 0 replies; 4+ messages in thread
From: Guenter Roeck @ 2011-10-13 15:12 UTC (permalink / raw)
  To: lm-sensors

On Thu, Oct 13, 2011 at 04:47:29AM -0400, Jean Delvare wrote:
> On Thu, 13 Oct 2011 10:43:31 +0200, michael.hennerich@analog.com wrote:
> > From: Michael Hennerich <michael.hennerich@analog.com>
> > 
> > Changes since V1:
> > 
> > Remove depreciated ADT75 device detection support.
> > 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: Michael Hennerich <michael.hennerich@analog.com>
> 
> Acked-by: Jean Delvare <khali@linux-fr.org>
> 
> I'll let Guenter pick the patch as he has a working development tree
> while at the moment I do not.
> 
Applied.

Thanks,
Guenter

_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

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

end of thread, other threads:[~2011-10-13 15:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-13  8:43 [lm-sensors] [PATCH V2] hwmon:lm75 add support for the Analog michael.hennerich
2011-10-13  8:46 ` Jonathan Cameron
2011-10-13  8:47 ` Jean Delvare
2011-10-13 15:12 ` Guenter Roeck

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.