All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <200908302054.20498.bzolnier@gmail.com>

diff --git a/a/1.txt b/N1/1.txt
index 80c0476..ec5d14a 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -1,26 +1,25 @@
-=46rom: Lyonel Vincent <lyonel@ezix.org>
-Subject: [PATCH] powermac: thermal control turns system off in normal tempe=
-rature conditions
+From: Lyonel Vincent <lyonel@ezix.org>
+Subject: [PATCH] powermac: thermal control turns system off in normal temperature conditions
 
 On certain PowerMacs, a module (therm_windtunnel) controls various
 thermal settings (it can report CPU/case temperature, change speed
 of internal fans, etc.)
 
 By default, the hardware thermal control has a temperature limit to
-protect the computer from damages (the default limit seems to be 80=B0C)
-but therm_windtunnel.c reduces it to an anormaly low value (65=B0C),
+protect the computer from damages (the default limit seems to be 80°C)
+but therm_windtunnel.c reduces it to an anormaly low value (65°C),
 which means that he computer will shut down randomly when hit by direct
 sun light or during summer (summer in France can be quite hot), actually
 possibly losing data instead of protecting it.
 
-The overheat limit in therm_windtunnel.c:253-254 should be set to 75=B0C
-and 70=B0C instead of 65=B0C and 60=B0C respectively.
+The overheat limit in therm_windtunnel.c:253-254 should be set to 75°C
+and 70°C instead of 65°C and 60°C respectively.
 
-=46rom: Lyonel Vincent <lyonel@ezix.org>
+From: Lyonel Vincent <lyonel@ezix.org>
 Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
-=2D--
+---
 Resurrected from Fedora's bugzilla (aka The Big Black Hole):
-https://bugzilla.redhat.com/show_bug.cgi?id=3D171937
+https://bugzilla.redhat.com/show_bug.cgi?id=171937
 
 The patch itself seems perfectly valid to me
 (especially given comments in therm_windtunnel.c).
@@ -29,19 +28,16 @@ The patch itself seems perfectly valid to me
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 Index: b/drivers/macintosh/therm_windtunnel.c
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
-=2D-- a/drivers/macintosh/therm_windtunnel.c
+===================================================================
+--- a/drivers/macintosh/therm_windtunnel.c
 +++ b/drivers/macintosh/therm_windtunnel.c
 @@ -239,8 +239,8 @@ setup_hardware( void )
  	 * to be on the safe side (OSX doesn't)...
  	 */
- 	if( x.overheat_temp =3D=3D (80 << 8) ) {
-=2D		x.overheat_temp =3D 65 << 8;
-=2D		x.overheat_hyst =3D 60 << 8;
-+		x.overheat_temp =3D 75 << 8;
-+		x.overheat_hyst =3D 70 << 8;
+ 	if( x.overheat_temp == (80 << 8) ) {
+-		x.overheat_temp = 65 << 8;
+-		x.overheat_hyst = 60 << 8;
++		x.overheat_temp = 75 << 8;
++		x.overheat_hyst = 70 << 8;
  		write_reg( x.thermostat, 2, x.overheat_hyst, 2 );
  		write_reg( x.thermostat, 3, x.overheat_temp, 2 );
-=20
diff --git a/a/content_digest b/N1/content_digest
index 23e3c0a..5932429 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -2,34 +2,33 @@
  "Subject\0[PATCH] powermac: thermal control turns system off in normal temperature conditions\0"
  "Date\0Sun, 30 Aug 2009 20:54:20 +0200\0"
  "To\0Benjamin Herrenschmidt <benh@kernel.crashing.org>\0"
- "Cc\0linuxppc-dev@ozlabs.org"
-  linux-kernel@vger.kernel.org
- " Lyonel Vincent <lyonel@ezix.org>\0"
+ "Cc\0Lyonel Vincent <lyonel@ezix.org>"
+  linuxppc-dev@ozlabs.org
+ " linux-kernel@vger.kernel.org\0"
  "\00:1\0"
  "b\0"
- "=46rom: Lyonel Vincent <lyonel@ezix.org>\n"
- "Subject: [PATCH] powermac: thermal control turns system off in normal tempe=\n"
- "rature conditions\n"
+ "From: Lyonel Vincent <lyonel@ezix.org>\n"
+ "Subject: [PATCH] powermac: thermal control turns system off in normal temperature conditions\n"
  "\n"
  "On certain PowerMacs, a module (therm_windtunnel) controls various\n"
  "thermal settings (it can report CPU/case temperature, change speed\n"
  "of internal fans, etc.)\n"
  "\n"
  "By default, the hardware thermal control has a temperature limit to\n"
- "protect the computer from damages (the default limit seems to be 80=B0C)\n"
- "but therm_windtunnel.c reduces it to an anormaly low value (65=B0C),\n"
+ "protect the computer from damages (the default limit seems to be 80\302\260C)\n"
+ "but therm_windtunnel.c reduces it to an anormaly low value (65\302\260C),\n"
  "which means that he computer will shut down randomly when hit by direct\n"
  "sun light or during summer (summer in France can be quite hot), actually\n"
  "possibly losing data instead of protecting it.\n"
  "\n"
- "The overheat limit in therm_windtunnel.c:253-254 should be set to 75=B0C\n"
- "and 70=B0C instead of 65=B0C and 60=B0C respectively.\n"
+ "The overheat limit in therm_windtunnel.c:253-254 should be set to 75\302\260C\n"
+ "and 70\302\260C instead of 65\302\260C and 60\302\260C respectively.\n"
  "\n"
- "=46rom: Lyonel Vincent <lyonel@ezix.org>\n"
+ "From: Lyonel Vincent <lyonel@ezix.org>\n"
  "Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>\n"
- "=2D--\n"
+ "---\n"
  "Resurrected from Fedora's bugzilla (aka The Big Black Hole):\n"
- "https://bugzilla.redhat.com/show_bug.cgi?id=3D171937\n"
+ "https://bugzilla.redhat.com/show_bug.cgi?id=171937\n"
  "\n"
  "The patch itself seems perfectly valid to me\n"
  "(especially given comments in therm_windtunnel.c).\n"
@@ -38,21 +37,18 @@
  " 1 file changed, 2 insertions(+), 2 deletions(-)\n"
  "\n"
  "Index: b/drivers/macintosh/therm_windtunnel.c\n"
- "=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=\n"
- "=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=\n"
- "=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D\n"
- "=2D-- a/drivers/macintosh/therm_windtunnel.c\n"
+ "===================================================================\n"
+ "--- a/drivers/macintosh/therm_windtunnel.c\n"
  "+++ b/drivers/macintosh/therm_windtunnel.c\n"
  "@@ -239,8 +239,8 @@ setup_hardware( void )\n"
  " \t * to be on the safe side (OSX doesn't)...\n"
  " \t */\n"
- " \tif( x.overheat_temp =3D=3D (80 << 8) ) {\n"
- "=2D\t\tx.overheat_temp =3D 65 << 8;\n"
- "=2D\t\tx.overheat_hyst =3D 60 << 8;\n"
- "+\t\tx.overheat_temp =3D 75 << 8;\n"
- "+\t\tx.overheat_hyst =3D 70 << 8;\n"
+ " \tif( x.overheat_temp == (80 << 8) ) {\n"
+ "-\t\tx.overheat_temp = 65 << 8;\n"
+ "-\t\tx.overheat_hyst = 60 << 8;\n"
+ "+\t\tx.overheat_temp = 75 << 8;\n"
+ "+\t\tx.overheat_hyst = 70 << 8;\n"
  " \t\twrite_reg( x.thermostat, 2, x.overheat_hyst, 2 );\n"
- " \t\twrite_reg( x.thermostat, 3, x.overheat_temp, 2 );\n"
- =20
+ " \t\twrite_reg( x.thermostat, 3, x.overheat_temp, 2 );"
 
-46c6401c258a2177ca85177d58888a7fc436d0075e0dc7923dd82d7bc39d3b10
+c8750485329bdb87eb40a3023985591d5fd583fd5e54ead9bbe10aae690fd2b1

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.