All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH: 2.6.11-rc5] i2c chips: add adt7461 support to lm90 driver
@ 2005-05-19  6:25 ` James Chapman
  0 siblings, 0 replies; 14+ messages in thread
From: James Chapman @ 2005-02-28 17:13 UTC (permalink / raw)
  To: sensors; +Cc: linux-kernel, khali

[-- Attachment #1: Type: text/plain, Size: 115 bytes --]

Add ADT7461 (temperature sensor) support to LM90 driver.

Signed-off-by: James Chapman <jchapman@katalix.com>






[-- Attachment #2: lm90.patch --]
[-- Type: text/plain, Size: 847 bytes --]

diff -Nru a/drivers/i2c/chips/lm90.c b/drivers/i2c/chips/lm90.c
--- a/drivers/i2c/chips/lm90.c	2005-02-27 13:24:11 +00:00
+++ b/drivers/i2c/chips/lm90.c	2005-02-27 13:24:11 +00:00
@@ -85,7 +85,7 @@
  * Insmod parameters
  */
 
-SENSORS_INSMOD_5(lm90, adm1032, lm99, lm86, max6657);
+SENSORS_INSMOD_6(lm90, adm1032, lm99, lm86, max6657, adt7461);
 
 /*
  * The LM90 registers
@@ -386,7 +386,10 @@
 			 && (reg_config1 & 0x3F) == 0x00
 			 && reg_convrate <= 0x0A) {
 				kind = adm1032;
-			}
+			} else
+			if (address == 0x4c
+			 && chip_id == 0x51) /* ADT7461 */
+				kind = adt7461;
 		} else
 		if (man_id == 0x4D) { /* Maxim */
 			/*
@@ -423,6 +426,8 @@
 		name = "lm86";
 	} else if (kind == max6657) {
 		name = "max6657";
+	} else if (kind == adt7461) {
+		name = "adt7461";
 	}
 
 	/* We can fill in the remaining client fields */






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

end of thread, other threads:[~2005-05-19  6:25 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-02-28 17:13 [PATCH: 2.6.11-rc5] i2c chips: add adt7461 support to lm90 driver James Chapman
2005-05-19  6:25 ` James Chapman
2005-03-02 16:55 ` Greg KH
2005-05-19  6:25   ` Greg KH
2005-03-02 19:37   ` Jean Delvare
2005-05-19  6:25     ` [PATCH: 2.6.11-rc5] i2c chips: add adt7461 support to lm90 Jean Delvare
2005-03-03 17:28     ` [PATCH: 2.6.11-rc5] i2c chips: add adt7461 support to lm90 driver James Chapman
2005-05-19  6:25       ` James Chapman
2005-03-03 21:32       ` Jean Delvare
2005-05-19  6:25         ` [PATCH: 2.6.11-rc5] i2c chips: add adt7461 support to lm90 Jean Delvare
2005-05-19  6:25 ` Jean Delvare
2005-05-19  6:25 ` [PATCH: 2.6.11-rc5] i2c chips: add adt7461 support to lm90 driver James Chapman
2005-05-19  6:25 ` [PATCH: 2.6.11-rc5] i2c chips: add adt7461 support to lm90 Jean Delvare
2005-05-19  6:25 ` [PATCH: 2.6.11-rc5] i2c chips: add adt7461 support to lm90 driver James Chapman

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.