All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <4CA76F53.6050509@cam.ac.uk>

diff --git a/a/1.txt b/N1/1.txt
index 9e642e6..8bed3b7 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -11,10 +11,10 @@ break out each conceptual change.
 
 Both look fine to me, so feel free to add
 
-Acked-by: Jonathan Cameron <jic23-KWPb1pKIrIJaa/9Udqfwiw@public.gmane.org>
+Acked-by: Jonathan Cameron <jic23@cam.ac.uk>
 To a broken out pair of patches.
 > 
-> Signed-off-by: Samu O kalo <samu.p.onkalo-xNZwKgViW5gAvxtiuMwx3w@public.gmane.org>
+> Signed-off-by: Samu O kalo <samu.p.onkalo@nokia.com>
 > ---
 >  drivers/hwmon/lis3lv02d.c     |   19 +++++++++++--------
 >  drivers/hwmon/lis3lv02d.h     |    1 +
@@ -39,13 +39,13 @@ To a broken out pair of patches.
 >  	 *      both have been read. So the value read will always be correct.
 > +	 * Set BOOT bit to refresh factory tuning values.
 >  	 */
-> -	if (lis3->whoami ==  WAI_12B) {
+> -	if (lis3->whoami =  WAI_12B) {
 > -		lis3->read(lis3, CTRL_REG2, &reg);
 > -		reg |= CTRL2_BDU;
 > -		lis3->write(lis3, CTRL_REG2, reg);
 > -	}
 > +	lis3->read(lis3, CTRL_REG2, &reg);
-> +	if (lis3->whoami ==  WAI_12B)
+> +	if (lis3->whoami =  WAI_12B)
 > +		reg |= CTRL2_BDU | CTRL2_BOOT;
 > +	else
 > +		reg |= CTRL2_BOOT_8B;
@@ -94,4 +94,10 @@ To a broken out pair of patches.
 > +	reg |= CTRL1_PD0 | CTRL1_Xen | CTRL1_Yen | CTRL1_Zen;
 >  	return lis3->write(lis3, CTRL_REG1, reg);
 >  }
->
+>  
+
+
+_______________________________________________
+lm-sensors mailing list
+lm-sensors@lm-sensors.org
+http://lists.lm-sensors.org/mailman/listinfo/lm-sensors
diff --git a/a/content_digest b/N1/content_digest
index e888cee..99a2acd 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,9 +1,9 @@
  "ref\01285933616-16044-1-git-send-email-samu.p.onkalo@nokia.com\0"
  "ref\01285933616-16044-6-git-send-email-samu.p.onkalo@nokia.com\0"
  "ref\01285933616-16044-6-git-send-email-samu.p.onkalo-xNZwKgViW5gAvxtiuMwx3w@public.gmane.org\0"
- "From\0Jonathan Cameron <jic23-KWPb1pKIrIJaa/9Udqfwiw@public.gmane.org>\0"
+ "From\0Jonathan Cameron <jic23@cam.ac.uk>\0"
  "Subject\0Re: [lm-sensors] [RFC PATCH 5/9] hwmon: lis3: Power on corrections\0"
- "Date\0Sat, 02 Oct 2010 18:43:47 +0100\0"
+ "Date\0Sat, 02 Oct 2010 17:43:47 +0000\0"
  "To\0Samu Onkalo <samu.p.onkalo-xNZwKgViW5gAvxtiuMwx3w@public.gmane.org>\0"
  "Cc\0eric.piel-VkQ1JFuSMpfAbQlEx87xDw@public.gmane.org"
   khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org
@@ -26,10 +26,10 @@
  "\n"
  "Both look fine to me, so feel free to add\n"
  "\n"
- "Acked-by: Jonathan Cameron <jic23-KWPb1pKIrIJaa/9Udqfwiw@public.gmane.org>\n"
+ "Acked-by: Jonathan Cameron <jic23@cam.ac.uk>\n"
  "To a broken out pair of patches.\n"
  "> \n"
- "> Signed-off-by: Samu O kalo <samu.p.onkalo-xNZwKgViW5gAvxtiuMwx3w@public.gmane.org>\n"
+ "> Signed-off-by: Samu O kalo <samu.p.onkalo@nokia.com>\n"
  "> ---\n"
  ">  drivers/hwmon/lis3lv02d.c     |   19 +++++++++++--------\n"
  ">  drivers/hwmon/lis3lv02d.h     |    1 +\n"
@@ -54,13 +54,13 @@
  ">  \t *      both have been read. So the value read will always be correct.\n"
  "> +\t * Set BOOT bit to refresh factory tuning values.\n"
  ">  \t */\n"
- "> -\tif (lis3->whoami ==  WAI_12B) {\n"
+ "> -\tif (lis3->whoami =  WAI_12B) {\n"
  "> -\t\tlis3->read(lis3, CTRL_REG2, &reg);\n"
  "> -\t\treg |= CTRL2_BDU;\n"
  "> -\t\tlis3->write(lis3, CTRL_REG2, reg);\n"
  "> -\t}\n"
  "> +\tlis3->read(lis3, CTRL_REG2, &reg);\n"
- "> +\tif (lis3->whoami ==  WAI_12B)\n"
+ "> +\tif (lis3->whoami =  WAI_12B)\n"
  "> +\t\treg |= CTRL2_BDU | CTRL2_BOOT;\n"
  "> +\telse\n"
  "> +\t\treg |= CTRL2_BOOT_8B;\n"
@@ -109,6 +109,12 @@
  "> +\treg |= CTRL1_PD0 | CTRL1_Xen | CTRL1_Yen | CTRL1_Zen;\n"
  ">  \treturn lis3->write(lis3, CTRL_REG1, reg);\n"
  ">  }\n"
- >
+ ">  \n"
+ "\n"
+ "\n"
+ "_______________________________________________\n"
+ "lm-sensors mailing list\n"
+ "lm-sensors@lm-sensors.org\n"
+ http://lists.lm-sensors.org/mailman/listinfo/lm-sensors
 
-a74ca799260303d937e66c9f80476645b509c7113fa06fa0f4ed63f60da218f7
+7800292e5eaee2b75b5176d92dd318016028d8af96cea68f8ebff10ee44813c6

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.