All of lore.kernel.org
 help / color / mirror / Atom feed
* [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30
@ 2009-12-16 17:58 ` Ray Copeland
  2009-12-16 19:23     ` [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for Darrick J. Wong
  2009-12-17  1:26   ` [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30 Ray Copeland
  0 siblings, 2 replies; 10+ messages in thread
From: Ray Copeland @ 2009-12-16 17:58 UTC (permalink / raw)
  To: lm-sensors

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

--===============6518689384888039629==
Content-class: urn:content-classes:message
Content-Type: multipart/alternative;
	boundary="----_=_NextPart_001_01CA7E79.618D6995"

This is a multi-part message in MIME format.

[-- Attachment #2: Type: text/plain, Size: 3476 bytes --]

From: Ray Copeland <ray.copeland@aprius.com>
Date: Wed, 16 Dec 2009
Subject: [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30 adt7462 hwmon driver 

Description:

The #define ADT7462_VOLT_COUNT is wrong, it should be 13 not 12. All the 
for loops that use this as a limit count are of the typical form, "for 
(n = 0; n < ADT7462_VOLT_COUNT; n++)", so to loop through all voltages 
w/o missing the last one it is necessary for the count to be one greater 
than it is.  (Specifically, you will miss the +1.5V 3GPIO input with count 
= 12 vs. 13.)

Signed-off-by: Ray Copeland <ray.copeland@aprius.com>

Diff with changes vs. original adt7462.c 2.6.30 version:

--- adt7462.c	2009-12-15 15:57:47.000000000 -0800
+++ adt7462.c.orig	2009-12-15 15:51:05.000000000 -0800
@@ -97,7 +97,6 @@
 #define		ADT7462_PIN24_SHIFT		6
 #define		ADT7462_PIN26_VOLT_INPUT	0x08
 #define		ADT7462_PIN25_VOLT_INPUT	0x20
-#define		ADT7462_PIN29_SHIFT		4	/* cfg3 */
 #define		ADT7462_PIN28_SHIFT		6	/* cfg3 */
 #define		ADT7462_PIN28_VOLT		0x5
 
@@ -183,7 +182,7 @@
  *
  * Some, but not all, of these voltages have low/high limits.
  */
-#define ADT7462_VOLT_COUNT	13
+#define ADT7462_VOLT_COUNT	12
 
 #define ADT7462_VENDOR		0x41
 #define ADT7462_DEVICE		0x62
@@ -325,13 +324,13 @@
 	case 10:
 		return 0x6A;
 	case 11:
-		if (data->pin_cfg[3] >> ADT7462_PIN29_SHIFT ==
+		if (data->pin_cfg[3] >> ADT7462_PIN28_SHIFT ==
 					ADT7462_PIN28_VOLT &&
 		    !(data->pin_cfg[0] & ADT7462_VID_INPUT))
 			return 0x50;
 		break;
 	case 12:
-		if (data->pin_cfg[3] >> ADT7462_PIN29_SHIFT ==
+		if (data->pin_cfg[3] >> ADT7462_PIN28_SHIFT ==
 					ADT7462_PIN28_VOLT &&
 		    !(data->pin_cfg[0] & ADT7462_VID_INPUT))
 			return 0x4C;
@@ -384,13 +383,13 @@
 	case 10:
 		return 0x73;
 	case 11:
-		if (data->pin_cfg[3] >> ADT7462_PIN29_SHIFT ==
+		if (data->pin_cfg[3] >> ADT7462_PIN28_SHIFT ==
 					ADT7462_PIN28_VOLT &&
 		    !(data->pin_cfg[0] & ADT7462_VID_INPUT))
 			return 0x76;
 		break;
 	case 12:
-		if (data->pin_cfg[3] >> ADT7462_PIN29_SHIFT ==
+		if (data->pin_cfg[3] >> ADT7462_PIN28_SHIFT ==
 					ADT7462_PIN28_VOLT &&
 		    !(data->pin_cfg[0] & ADT7462_VID_INPUT))
 			return 0x77;
@@ -443,13 +442,13 @@
 	case 10:
 		return 0x91;
 	case 11:
-		if (data->pin_cfg[3] >> ADT7462_PIN29_SHIFT ==
+		if (data->pin_cfg[3] >> ADT7462_PIN28_SHIFT ==
 					ADT7462_PIN28_VOLT &&
 		    !(data->pin_cfg[0] & ADT7462_VID_INPUT))
 			return 0x94;
 		break;
 	case 12:
-		if (data->pin_cfg[3] >> ADT7462_PIN29_SHIFT ==
+		if (data->pin_cfg[3] >> ADT7462_PIN28_SHIFT ==
 					ADT7462_PIN28_VOLT &&
 		    !(data->pin_cfg[0] & ADT7462_VID_INPUT))
 			return 0x95;
@@ -535,13 +534,13 @@
 			return "+1.5";
 		}
 	case 11:
-		if (data->pin_cfg[3] >> ADT7462_PIN29_SHIFT ==
+		if (data->pin_cfg[3] >> ADT7462_PIN28_SHIFT ==
 					ADT7462_PIN28_VOLT &&
 		    !(data->pin_cfg[0] & ADT7462_VID_INPUT))
 			return "+1.5V ICH";
 		break;
 	case 12:
-		if (data->pin_cfg[3] >> ADT7462_PIN29_SHIFT ==
+		if (data->pin_cfg[3] >> ADT7462_PIN28_SHIFT ==
 					ADT7462_PIN28_VOLT &&
 		    !(data->pin_cfg[0] & ADT7462_VID_INPUT))
 			return "+1.5V 3GPIO";
@@ -630,7 +629,7 @@
 		}
 	case 11:
 	case 12:
-		if (data->pin_cfg[3] >> ADT7462_PIN29_SHIFT ==
+		if (data->pin_cfg[3] >> ADT7462_PIN28_SHIFT ==
 					ADT7462_PIN28_VOLT &&
 		    !(data->pin_cfg[0] & ADT7462_VID_INPUT))
 			return 7800;




[-- Attachment #3: Type: text/html, Size: 12541 bytes --]

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

* Re: [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30 adt7462 hwmon driver
  2009-12-16 17:58 ` [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30 Ray Copeland
@ 2009-12-16 19:23     ` Darrick J. Wong
  2009-12-17  1:26   ` [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30 Ray Copeland
  1 sibling, 0 replies; 10+ messages in thread
From: Darrick J. Wong @ 2009-12-16 19:23 UTC (permalink / raw)
  To: Ray Copeland; +Cc: linux-kernel, lm-sensors, Arvind Vasudev

On Wed, Dec 16, 2009 at 09:58:32AM -0800, Ray Copeland wrote:
> From: Ray Copeland <ray.copeland@aprius.com>
> Date: Wed, 16 Dec 2009
> Subject: [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30 adt7462 hwmon driver 
> 
> Description:
> 
> The #define ADT7462_VOLT_COUNT is wrong, it should be 13 not 12. All the 
<snip>
> -#define ADT7462_VOLT_COUNT	13
> +#define ADT7462_VOLT_COUNT	12

Uh... I think this patch is reversed?  This part of the diff replaces 13 with
12, which is the opposite of what I think you want.

--D

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

* Re: [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for
@ 2009-12-16 19:23     ` Darrick J. Wong
  0 siblings, 0 replies; 10+ messages in thread
From: Darrick J. Wong @ 2009-12-16 19:23 UTC (permalink / raw)
  To: Ray Copeland; +Cc: linux-kernel, lm-sensors, Arvind Vasudev

On Wed, Dec 16, 2009 at 09:58:32AM -0800, Ray Copeland wrote:
> From: Ray Copeland <ray.copeland@aprius.com>
> Date: Wed, 16 Dec 2009
> Subject: [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30 adt7462 hwmon driver 
> 
> Description:
> 
> The #define ADT7462_VOLT_COUNT is wrong, it should be 13 not 12. All the 
<snip>
> -#define ADT7462_VOLT_COUNT	13
> +#define ADT7462_VOLT_COUNT	12

Uh... I think this patch is reversed?  This part of the diff replaces 13 with
12, which is the opposite of what I think you want.

--D

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

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

* [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30
  2009-12-16 17:58 ` [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30 Ray Copeland
  2009-12-16 19:23     ` [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for Darrick J. Wong
@ 2009-12-17  1:26   ` Ray Copeland
  2009-12-17 16:14       ` [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for Jean Delvare
  1 sibling, 1 reply; 10+ messages in thread
From: Ray Copeland @ 2009-12-17  1:26 UTC (permalink / raw)
  To: lm-sensors

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

--===============2473336370049281732==
Content-class: urn:content-classes:message
Content-Type: multipart/alternative;
	boundary="----_=_NextPart_001_01CA7EB8.4B916955"

This is a multi-part message in MIME format.

[-- Attachment #2: Type: text/plain, Size: 1057 bytes --]

From: Ray Copeland <ray.copeland@aprius.com>
Date: Wed, 16 Dec 2009
Subject: [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30 adt7462 hwmon driver 

Description:

The #define ADT7462_VOLT_COUNT is wrong, it should be 13 not 12. All the 
for loops that use this as a limit count are of the typical form, "for 
(n = 0; n < ADT7462_VOLT_COUNT; n++)", so to loop through all voltages 
w/o missing the last one it is necessary for the count to be one greater 
than it is.  (Specifically, you will miss the +1.5V 3GPIO input with count 
= 12 vs. 13.)

Signed-off-by: Ray Copeland <ray.copeland@aprius.com>

Diff with changes vs. original adt7462.c 2.6.30 version:

--- adt7462.c.orig      2009-12-15 15:51:05.000000000 -0800
+++ adt7462.c.volt_count        2009-12-16 14:06:01.000000000 -0800
@@ -182,7 +182,7 @@
  *
  * Some, but not all, of these voltages have low/high limits.
  */
-#define ADT7462_VOLT_COUNT     12
+#define ADT7462_VOLT_COUNT     13

 #define ADT7462_VENDOR         0x41
 #define ADT7462_DEVICE         0x62

[-- Attachment #3: Type: text/html, Size: 1815 bytes --]

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

* Re: [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30  adt7462 hwmon driver
  2009-12-17  1:26   ` [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30 Ray Copeland
@ 2009-12-17 16:14       ` Jean Delvare
  0 siblings, 0 replies; 10+ messages in thread
From: Jean Delvare @ 2009-12-17 16:14 UTC (permalink / raw)
  To: Ray Copeland; +Cc: linux-kernel, lm-sensors

Hi Ray,

On Wed, 16 Dec 2009 17:26:19 -0800, Ray Copeland wrote:
> From: Ray Copeland <ray.copeland@aprius.com>
> Date: Wed, 16 Dec 2009
> Subject: [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30 adt7462 hwmon driver 
> 
> Description:
> 
> The #define ADT7462_VOLT_COUNT is wrong, it should be 13 not 12. All the 
> for loops that use this as a limit count are of the typical form, "for 
> (n = 0; n < ADT7462_VOLT_COUNT; n++)", so to loop through all voltages 
> w/o missing the last one it is necessary for the count to be one greater 
> than it is.  (Specifically, you will miss the +1.5V 3GPIO input with count 
> = 12 vs. 13.)
> 
> Signed-off-by: Ray Copeland <ray.copeland@aprius.com>
> 
> Diff with changes vs. original adt7462.c 2.6.30 version:
> 
> --- adt7462.c.orig      2009-12-15 15:51:05.000000000 -0800
> +++ adt7462.c.volt_count        2009-12-16 14:06:01.000000000 -0800
> @@ -182,7 +182,7 @@
>   *
>   * Some, but not all, of these voltages have low/high limits.
>   */
> -#define ADT7462_VOLT_COUNT     12
> +#define ADT7462_VOLT_COUNT     13
> 
>  #define ADT7462_VENDOR         0x41
>  #define ADT7462_DEVICE         0x62

While the patch looks functionally correct, it is horribly broken in
its format. You sent a HTML mail instead of only plain text. Your
mailer turned the tabs into spaces. And the paths are missing from the
patch header.

Please learn how to send proper patches that kernel maintainers can
apply. Documentation/SubmittingPatches is a good start.

-- 
Jean Delvare

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

* Re: [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for
@ 2009-12-17 16:14       ` Jean Delvare
  0 siblings, 0 replies; 10+ messages in thread
From: Jean Delvare @ 2009-12-17 16:14 UTC (permalink / raw)
  To: Ray Copeland; +Cc: linux-kernel, lm-sensors

Hi Ray,

On Wed, 16 Dec 2009 17:26:19 -0800, Ray Copeland wrote:
> From: Ray Copeland <ray.copeland@aprius.com>
> Date: Wed, 16 Dec 2009
> Subject: [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30 adt7462 hwmon driver 
> 
> Description:
> 
> The #define ADT7462_VOLT_COUNT is wrong, it should be 13 not 12. All the 
> for loops that use this as a limit count are of the typical form, "for 
> (n = 0; n < ADT7462_VOLT_COUNT; n++)", so to loop through all voltages 
> w/o missing the last one it is necessary for the count to be one greater 
> than it is.  (Specifically, you will miss the +1.5V 3GPIO input with count 
> = 12 vs. 13.)
> 
> Signed-off-by: Ray Copeland <ray.copeland@aprius.com>
> 
> Diff with changes vs. original adt7462.c 2.6.30 version:
> 
> --- adt7462.c.orig      2009-12-15 15:51:05.000000000 -0800
> +++ adt7462.c.volt_count        2009-12-16 14:06:01.000000000 -0800
> @@ -182,7 +182,7 @@
>   *
>   * Some, but not all, of these voltages have low/high limits.
>   */
> -#define ADT7462_VOLT_COUNT     12
> +#define ADT7462_VOLT_COUNT     13
> 
>  #define ADT7462_VENDOR         0x41
>  #define ADT7462_DEVICE         0x62

While the patch looks functionally correct, it is horribly broken in
its format. You sent a HTML mail instead of only plain text. Your
mailer turned the tabs into spaces. And the paths are missing from the
patch header.

Please learn how to send proper patches that kernel maintainers can
apply. Documentation/SubmittingPatches is a good start.

-- 
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] 10+ messages in thread

* RE: [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30  adt7462 hwmon driver
  2009-12-17 16:14       ` [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for Jean Delvare
@ 2009-12-17 17:37         ` Ray Copeland
  -1 siblings, 0 replies; 10+ messages in thread
From: Ray Copeland @ 2009-12-17 17:37 UTC (permalink / raw)
  To: Jean Delvare; +Cc: linux-kernel, lm-sensors

Hi, Jean, thanks for letting me know.  This is my first time sending a
patch, and I should have sent
it first to Darrick to have him review it before I posted directly to
the group.  He told me how to
rework it properly so that I will do it right next time.

Sorry if this caused any problem for you.

Regards,

Ray Copeland

-----Original Message-----
From: Jean Delvare [mailto:khali@linux-fr.org] 
Sent: Thursday, December 17, 2009 8:15 AM
To: Ray Copeland
Cc: linux-kernel@vger.kernel.org; lm-sensors@lm-sensors.org
Subject: Re: [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for
linux-2.6.30 adt7462 hwmon driver

Hi Ray,

On Wed, 16 Dec 2009 17:26:19 -0800, Ray Copeland wrote:
> From: Ray Copeland <ray.copeland@aprius.com>
> Date: Wed, 16 Dec 2009
> Subject: [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30 adt7462
hwmon driver 
> 
> Description:
> 
> The #define ADT7462_VOLT_COUNT is wrong, it should be 13 not 12. All
the 
> for loops that use this as a limit count are of the typical form, "for

> (n = 0; n < ADT7462_VOLT_COUNT; n++)", so to loop through all voltages

> w/o missing the last one it is necessary for the count to be one
greater 
> than it is.  (Specifically, you will miss the +1.5V 3GPIO input with
count 
> = 12 vs. 13.)
> 
> Signed-off-by: Ray Copeland <ray.copeland@aprius.com>
> 
> Diff with changes vs. original adt7462.c 2.6.30 version:
> 
> --- adt7462.c.orig      2009-12-15 15:51:05.000000000 -0800
> +++ adt7462.c.volt_count        2009-12-16 14:06:01.000000000 -0800
> @@ -182,7 +182,7 @@
>   *
>   * Some, but not all, of these voltages have low/high limits.
>   */
> -#define ADT7462_VOLT_COUNT     12
> +#define ADT7462_VOLT_COUNT     13
> 
>  #define ADT7462_VENDOR         0x41
>  #define ADT7462_DEVICE         0x62

While the patch looks functionally correct, it is horribly broken in
its format. You sent a HTML mail instead of only plain text. Your
mailer turned the tabs into spaces. And the paths are missing from the
patch header.

Please learn how to send proper patches that kernel maintainers can
apply. Documentation/SubmittingPatches is a good start.

-- 
Jean Delvare

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

* Re: [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for
@ 2009-12-17 17:37         ` Ray Copeland
  0 siblings, 0 replies; 10+ messages in thread
From: Ray Copeland @ 2009-12-17 17:37 UTC (permalink / raw)
  To: Jean Delvare; +Cc: linux-kernel, lm-sensors

Hi, Jean, thanks for letting me know.  This is my first time sending a
patch, and I should have sent
it first to Darrick to have him review it before I posted directly to
the group.  He told me how to
rework it properly so that I will do it right next time.

Sorry if this caused any problem for you.

Regards,

Ray Copeland

-----Original Message-----
From: Jean Delvare [mailto:khali@linux-fr.org] 
Sent: Thursday, December 17, 2009 8:15 AM
To: Ray Copeland
Cc: linux-kernel@vger.kernel.org; lm-sensors@lm-sensors.org
Subject: Re: [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for
linux-2.6.30 adt7462 hwmon driver

Hi Ray,

On Wed, 16 Dec 2009 17:26:19 -0800, Ray Copeland wrote:
> From: Ray Copeland <ray.copeland@aprius.com>
> Date: Wed, 16 Dec 2009
> Subject: [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30 adt7462
hwmon driver 
> 
> Description:
> 
> The #define ADT7462_VOLT_COUNT is wrong, it should be 13 not 12. All
the 
> for loops that use this as a limit count are of the typical form, "for

> (n = 0; n < ADT7462_VOLT_COUNT; n++)", so to loop through all voltages

> w/o missing the last one it is necessary for the count to be one
greater 
> than it is.  (Specifically, you will miss the +1.5V 3GPIO input with
count 
> = 12 vs. 13.)
> 
> Signed-off-by: Ray Copeland <ray.copeland@aprius.com>
> 
> Diff with changes vs. original adt7462.c 2.6.30 version:
> 
> --- adt7462.c.orig      2009-12-15 15:51:05.000000000 -0800
> +++ adt7462.c.volt_count        2009-12-16 14:06:01.000000000 -0800
> @@ -182,7 +182,7 @@
>   *
>   * Some, but not all, of these voltages have low/high limits.
>   */
> -#define ADT7462_VOLT_COUNT     12
> +#define ADT7462_VOLT_COUNT     13
> 
>  #define ADT7462_VENDOR         0x41
>  #define ADT7462_DEVICE         0x62

While the patch looks functionally correct, it is horribly broken in
its format. You sent a HTML mail instead of only plain text. Your
mailer turned the tabs into spaces. And the paths are missing from the
patch header.

Please learn how to send proper patches that kernel maintainers can
apply. Documentation/SubmittingPatches is a good start.

-- 
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] 10+ messages in thread

* Re: [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30  adt7462 hwmon driver
  2009-12-17 17:37         ` [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for Ray Copeland
@ 2010-01-12 10:28           ` Jean Delvare
  -1 siblings, 0 replies; 10+ messages in thread
From: Jean Delvare @ 2010-01-12 10:28 UTC (permalink / raw)
  To: Ray Copeland; +Cc: linux-kernel, lm-sensors

On Thu, 17 Dec 2009 09:37:32 -0800, Ray Copeland wrote:
> Hi, Jean, thanks for letting me know.  This is my first time sending a
> patch, and I should have sent
> it first to Darrick to have him review it before I posted directly to
> the group.  He told me how to
> rework it properly so that I will do it right next time.

Apparently this patch got lost? Ray, care to resubmit with proper
formatting so that I can apply it?

Thanks,
-- 
Jean Delvare

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

* Re: [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for
@ 2010-01-12 10:28           ` Jean Delvare
  0 siblings, 0 replies; 10+ messages in thread
From: Jean Delvare @ 2010-01-12 10:28 UTC (permalink / raw)
  To: Ray Copeland; +Cc: linux-kernel, lm-sensors

On Thu, 17 Dec 2009 09:37:32 -0800, Ray Copeland wrote:
> Hi, Jean, thanks for letting me know.  This is my first time sending a
> patch, and I should have sent
> it first to Darrick to have him review it before I posted directly to
> the group.  He told me how to
> rework it properly so that I will do it right next time.

Apparently this patch got lost? Ray, care to resubmit with proper
formatting so that I can apply it?

Thanks,
-- 
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] 10+ messages in thread

end of thread, other threads:[~2010-01-12 10:28 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <AFEAE911EE22F64BACAB05ED86B4D4FC018DA312@EXVBE012-13.exch012.intermedia.net>
2009-12-16 17:58 ` [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30 Ray Copeland
2009-12-16 19:23   ` [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30 adt7462 hwmon driver Darrick J. Wong
2009-12-16 19:23     ` [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for Darrick J. Wong
2009-12-17  1:26   ` [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30 Ray Copeland
2009-12-17 16:14     ` [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30 adt7462 hwmon driver Jean Delvare
2009-12-17 16:14       ` [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for Jean Delvare
2009-12-17 17:37       ` [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30 adt7462 hwmon driver Ray Copeland
2009-12-17 17:37         ` [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for Ray Copeland
2010-01-12 10:28         ` [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for linux-2.6.30 adt7462 hwmon driver Jean Delvare
2010-01-12 10:28           ` [lm-sensors] [PATCH 1/2] Wrong ADT7462_VOLT_COUNT for Jean Delvare

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.