All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <1452763884.2521.23.camel@linux.intel.com>

diff --git a/a/1.txt b/N1/1.txt
index de4b615..c835e21 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -1,6 +1,5 @@
 On Wed, 2016-01-13 at 22:29 +0100, Anton Wuerfel wrote:
-> This patch fixes compiler warnings about wrong conversion specifiers=C2=
-=A0
+> This patch fixes compiler warnings about wrong conversion specifiers 
 
 This patch obviously doesn't _fix_warnings_, rather changes specifiers
 to get it consistent with argument.
@@ -8,64 +7,61 @@ to get it consistent with argument.
 > used
 > in a debug output in 8250_pnp.c. The precise warning is:
 
-Usually there is no need to cite all lines=E2=80=A6
+Usually there is no need to cite all lines…
 
->=20
-> drivers/tty/serial/8250/8250_pnp.c: In function =E2=80=98serial_pnp_p=
-robe=E2=80=99:
-> include/linux/dynamic_debug.h:64:16: warning: format =E2=80=98%x=E2=80=
-=99 expects
+> 
+> drivers/tty/serial/8250/8250_pnp.c: In function ‘serial_pnp_probe’:
+> include/linux/dynamic_debug.h:64:16: warning: format ‘%x’ expects
 > argument
 > of [...]
 
 OK.
 
->=20
+> 
 > include/linux/dynamic_debug.h:84:2: note: in expansion of macro
-> =E2=80=98DEFINE_DYNAMIC_DEBUG_METADATA=E2=80=99
->=20
+> ‘DEFINE_DYNAMIC_DEBUG_METADATA’
+> 
 > include/linux/device.h:1179:2: note: in expansion of macro
-> =E2=80=98dynamic_dev_dbg=E2=80=99
+> ‘dynamic_dev_dbg’
 
 Redundant.
 
->=20
+> 
 > drivers/tty/serial/8250/8250_pnp.c:467:2: note: in expansion of macro
-> =E2=80=98dev_dbg=E2=80=99
-> =C2=A0 dev_dbg(&dev->dev,
-> =C2=A0 ^
-> include/linux/dynamic_debug.h:64:16: warning: format =E2=80=98%lx=E2=80=
-=99 expects
+> ‘dev_dbg’
+>   dev_dbg(&dev->dev,
+>   ^
+> include/linux/dynamic_debug.h:64:16: warning: format ‘%lx’ expects
 > argument
 > of [...]
 
 OK.
 
->=20
+> 
 > include/linux/dynamic_debug.h:84:2: note: in expansion of macro
-> =E2=80=98DEFINE_DYNAMIC_DEBUG_METADATA=E2=80=99
->=20
+> ‘DEFINE_DYNAMIC_DEBUG_METADATA’
+> 
 > include/linux/device.h:1179:2: note: in expansion of macro
-> =E2=80=98dynamic_dev_dbg=E2=80=99
+> ‘dynamic_dev_dbg’
 
 Redundant.
 
->=20
+> 
 > drivers/tty/serial/8250/8250_pnp.c:467:2: note: in expansion of macro
-> =E2=80=98dev_dbg=E2=80=99
-> =C2=A0 dev_dbg(&dev->dev,
-> =C2=A0 ^
->=20
+> ‘dev_dbg’
+>   dev_dbg(&dev->dev,
+>   ^
+> 
 > Those warnings never got triggered, because the command was nested
 > in an #ifdef, which is removed by a patch of this series.
->=20
-> Signed-off-by: Anton W=C3=BCrfel <anton.wuerfel@fau.de>
+> 
+> Signed-off-by: Anton Würfel <anton.wuerfel@fau.de>
 > Signed-off-by: Phillip Raffeck <phillip.raffeck@fau.de>
 > Cc: linux-kernel@i4.cs.fau.de
 > ---
-> =C2=A0drivers/tty/serial/8250/8250_pnp.c | 4 ++--
-> =C2=A01 file changed, 2 insertions(+), 2 deletions(-)
->=20
+>  drivers/tty/serial/8250/8250_pnp.c | 4 ++--
+>  1 file changed, 2 insertions(+), 2 deletions(-)
+> 
 > diff --git a/drivers/tty/serial/8250/8250_pnp.c
 > b/drivers/tty/serial/8250/8250_pnp.c
 > index 0c32c59..92f4412 100644
@@ -73,15 +69,15 @@ Redundant.
 > +++ b/drivers/tty/serial/8250/8250_pnp.c
 > @@ -465,8 +465,8 @@ serial_pnp_probe(struct pnp_dev *dev, const
 > struct pnp_device_id *dev_id)
-> =C2=A0		return -ENODEV;
-> =C2=A0
-> =C2=A0	dev_dbg(&dev->dev,
-> -		=C2=A0"Setup PNP port: port %x, mem 0x%lx, irq %d, type
+>  		return -ENODEV;
+>  
+>  	dev_dbg(&dev->dev,
+> -		 "Setup PNP port: port %x, mem 0x%lx, irq %d, type
 > %d\n",
-> -		=C2=A0uart.port.iobase, uart.port.mapbase,
-> +		=C2=A0"Setup PNP port: port %lx, mem 0x%lx, irq %d, type
+> -		 uart.port.iobase, uart.port.mapbase,
+> +		 "Setup PNP port: port %lx, mem 0x%lx, irq %d, type
 > %d\n",
-> +		=C2=A0uart.port.iobase, (unsigned long)uart.port.mapbase,
+> +		 uart.port.iobase, (unsigned long)uart.port.mapbase,
 
 This approach is not fully correct. In Linux kernel we have %p
 extensions to cover some custom types such as resource_size_t, of which
@@ -94,16 +90,15 @@ uart.port.iobase, &uart.port.mapbase,
 
 looks better.
 
-> =C2=A0		=C2=A0uart.port.irq, uart.port.iotype);
-> =C2=A0
-> =C2=A0	if (flags & CIR_PORT) {
+>  		 uart.port.irq, uart.port.iotype);
+>  
+>  	if (flags & CIR_PORT) {
 
---=20
+-- 
 Andy Shevchenko <andriy.shevchenko@linux.intel.com>
 Intel Finland Oy
 
 --
-To unsubscribe from this list: send the line "unsubscribe linux-parisc"=
- in
+To unsubscribe from this list: send the line "unsubscribe linux-parisc" in
 the body of a message to majordomo@vger.kernel.org
 More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff --git a/a/content_digest b/N1/content_digest
index 618d2da..6f30c50 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -24,8 +24,7 @@
  "\00:1\0"
  "b\0"
  "On Wed, 2016-01-13 at 22:29 +0100, Anton Wuerfel wrote:\n"
- "> This patch fixes compiler warnings about wrong conversion specifiers=C2=\n"
- "=A0\n"
+ "> This patch fixes compiler warnings about wrong conversion specifiers\302\240\n"
  "\n"
  "This patch obviously doesn't _fix_warnings_, rather changes specifiers\n"
  "to get it consistent with argument.\n"
@@ -33,64 +32,61 @@
  "> used\n"
  "> in a debug output in 8250_pnp.c. The precise warning is:\n"
  "\n"
- "Usually there is no need to cite all lines=E2=80=A6\n"
+ "Usually there is no need to cite all lines\342\200\246\n"
  "\n"
- ">=20\n"
- "> drivers/tty/serial/8250/8250_pnp.c: In function =E2=80=98serial_pnp_p=\n"
- "robe=E2=80=99:\n"
- "> include/linux/dynamic_debug.h:64:16: warning: format =E2=80=98%x=E2=80=\n"
- "=99 expects\n"
+ "> \n"
+ "> drivers/tty/serial/8250/8250_pnp.c: In function \342\200\230serial_pnp_probe\342\200\231:\n"
+ "> include/linux/dynamic_debug.h:64:16: warning: format \342\200\230%x\342\200\231 expects\n"
  "> argument\n"
  "> of [...]\n"
  "\n"
  "OK.\n"
  "\n"
- ">=20\n"
+ "> \n"
  "> include/linux/dynamic_debug.h:84:2: note: in expansion of macro\n"
- "> =E2=80=98DEFINE_DYNAMIC_DEBUG_METADATA=E2=80=99\n"
- ">=20\n"
+ "> \342\200\230DEFINE_DYNAMIC_DEBUG_METADATA\342\200\231\n"
+ "> \n"
  "> include/linux/device.h:1179:2: note: in expansion of macro\n"
- "> =E2=80=98dynamic_dev_dbg=E2=80=99\n"
+ "> \342\200\230dynamic_dev_dbg\342\200\231\n"
  "\n"
  "Redundant.\n"
  "\n"
- ">=20\n"
+ "> \n"
  "> drivers/tty/serial/8250/8250_pnp.c:467:2: note: in expansion of macro\n"
- "> =E2=80=98dev_dbg=E2=80=99\n"
- "> =C2=A0 dev_dbg(&dev->dev,\n"
- "> =C2=A0 ^\n"
- "> include/linux/dynamic_debug.h:64:16: warning: format =E2=80=98%lx=E2=80=\n"
- "=99 expects\n"
+ "> \342\200\230dev_dbg\342\200\231\n"
+ "> \302\240 dev_dbg(&dev->dev,\n"
+ "> \302\240 ^\n"
+ "> include/linux/dynamic_debug.h:64:16: warning: format \342\200\230%lx\342\200\231 expects\n"
  "> argument\n"
  "> of [...]\n"
  "\n"
  "OK.\n"
  "\n"
- ">=20\n"
+ "> \n"
  "> include/linux/dynamic_debug.h:84:2: note: in expansion of macro\n"
- "> =E2=80=98DEFINE_DYNAMIC_DEBUG_METADATA=E2=80=99\n"
- ">=20\n"
+ "> \342\200\230DEFINE_DYNAMIC_DEBUG_METADATA\342\200\231\n"
+ "> \n"
  "> include/linux/device.h:1179:2: note: in expansion of macro\n"
- "> =E2=80=98dynamic_dev_dbg=E2=80=99\n"
+ "> \342\200\230dynamic_dev_dbg\342\200\231\n"
  "\n"
  "Redundant.\n"
  "\n"
- ">=20\n"
+ "> \n"
  "> drivers/tty/serial/8250/8250_pnp.c:467:2: note: in expansion of macro\n"
- "> =E2=80=98dev_dbg=E2=80=99\n"
- "> =C2=A0 dev_dbg(&dev->dev,\n"
- "> =C2=A0 ^\n"
- ">=20\n"
+ "> \342\200\230dev_dbg\342\200\231\n"
+ "> \302\240 dev_dbg(&dev->dev,\n"
+ "> \302\240 ^\n"
+ "> \n"
  "> Those warnings never got triggered, because the command was nested\n"
  "> in an #ifdef, which is removed by a patch of this series.\n"
- ">=20\n"
- "> Signed-off-by: Anton W=C3=BCrfel <anton.wuerfel@fau.de>\n"
+ "> \n"
+ "> Signed-off-by: Anton W\303\274rfel <anton.wuerfel@fau.de>\n"
  "> Signed-off-by: Phillip Raffeck <phillip.raffeck@fau.de>\n"
  "> Cc: linux-kernel@i4.cs.fau.de\n"
  "> ---\n"
- "> =C2=A0drivers/tty/serial/8250/8250_pnp.c | 4 ++--\n"
- "> =C2=A01 file changed, 2 insertions(+), 2 deletions(-)\n"
- ">=20\n"
+ "> \302\240drivers/tty/serial/8250/8250_pnp.c | 4 ++--\n"
+ "> \302\2401 file changed, 2 insertions(+), 2 deletions(-)\n"
+ "> \n"
  "> diff --git a/drivers/tty/serial/8250/8250_pnp.c\n"
  "> b/drivers/tty/serial/8250/8250_pnp.c\n"
  "> index 0c32c59..92f4412 100644\n"
@@ -98,15 +94,15 @@
  "> +++ b/drivers/tty/serial/8250/8250_pnp.c\n"
  "> @@ -465,8 +465,8 @@ serial_pnp_probe(struct pnp_dev *dev, const\n"
  "> struct pnp_device_id *dev_id)\n"
- "> =C2=A0\t\treturn -ENODEV;\n"
- "> =C2=A0\n"
- "> =C2=A0\tdev_dbg(&dev->dev,\n"
- "> -\t\t=C2=A0\"Setup PNP port: port %x, mem 0x%lx, irq %d, type\n"
+ "> \302\240\t\treturn -ENODEV;\n"
+ "> \302\240\n"
+ "> \302\240\tdev_dbg(&dev->dev,\n"
+ "> -\t\t\302\240\"Setup PNP port: port %x, mem 0x%lx, irq %d, type\n"
  "> %d\\n\",\n"
- "> -\t\t=C2=A0uart.port.iobase, uart.port.mapbase,\n"
- "> +\t\t=C2=A0\"Setup PNP port: port %lx, mem 0x%lx, irq %d, type\n"
+ "> -\t\t\302\240uart.port.iobase, uart.port.mapbase,\n"
+ "> +\t\t\302\240\"Setup PNP port: port %lx, mem 0x%lx, irq %d, type\n"
  "> %d\\n\",\n"
- "> +\t\t=C2=A0uart.port.iobase, (unsigned long)uart.port.mapbase,\n"
+ "> +\t\t\302\240uart.port.iobase, (unsigned long)uart.port.mapbase,\n"
  "\n"
  "This approach is not fully correct. In Linux kernel we have %p\n"
  "extensions to cover some custom types such as resource_size_t, of which\n"
@@ -119,18 +115,17 @@
  "\n"
  "looks better.\n"
  "\n"
- "> =C2=A0\t\t=C2=A0uart.port.irq, uart.port.iotype);\n"
- "> =C2=A0\n"
- "> =C2=A0\tif (flags & CIR_PORT) {\n"
+ "> \302\240\t\t\302\240uart.port.irq, uart.port.iotype);\n"
+ "> \302\240\n"
+ "> \302\240\tif (flags & CIR_PORT) {\n"
  "\n"
- "--=20\n"
+ "-- \n"
  "Andy Shevchenko <andriy.shevchenko@linux.intel.com>\n"
  "Intel Finland Oy\n"
  "\n"
  "--\n"
- "To unsubscribe from this list: send the line \"unsubscribe linux-parisc\"=\n"
- " in\n"
+ "To unsubscribe from this list: send the line \"unsubscribe linux-parisc\" in\n"
  "the body of a message to majordomo@vger.kernel.org\n"
  More majordomo info at  http://vger.kernel.org/majordomo-info.html
 
-a114a8544c3ceb552af5bbf3eb57e61cd07409e2bb1cb0fac65265bfeee6ab77
+5bfc6c2ecfdd8851e0c7a42fd5e9b92e80392054189bcf390d78a5d563baf58e

diff --git a/a/1.txt b/N2/1.txt
index de4b615..23d89b3 100644
--- a/a/1.txt
+++ b/N2/1.txt
@@ -1,6 +1,5 @@
 On Wed, 2016-01-13 at 22:29 +0100, Anton Wuerfel wrote:
-> This patch fixes compiler warnings about wrong conversion specifiers=C2=
-=A0
+> This patch fixes compiler warnings about wrong conversion specifiers 
 
 This patch obviously doesn't _fix_warnings_, rather changes specifiers
 to get it consistent with argument.
@@ -8,64 +7,61 @@ to get it consistent with argument.
 > used
 > in a debug output in 8250_pnp.c. The precise warning is:
 
-Usually there is no need to cite all lines=E2=80=A6
+Usually there is no need to cite all lines…
 
->=20
-> drivers/tty/serial/8250/8250_pnp.c: In function =E2=80=98serial_pnp_p=
-robe=E2=80=99:
-> include/linux/dynamic_debug.h:64:16: warning: format =E2=80=98%x=E2=80=
-=99 expects
+> 
+> drivers/tty/serial/8250/8250_pnp.c: In function ‘serial_pnp_probe’:
+> include/linux/dynamic_debug.h:64:16: warning: format ‘%x’ expects
 > argument
 > of [...]
 
 OK.
 
->=20
+> 
 > include/linux/dynamic_debug.h:84:2: note: in expansion of macro
-> =E2=80=98DEFINE_DYNAMIC_DEBUG_METADATA=E2=80=99
->=20
+> ‘DEFINE_DYNAMIC_DEBUG_METADATA’
+> 
 > include/linux/device.h:1179:2: note: in expansion of macro
-> =E2=80=98dynamic_dev_dbg=E2=80=99
+> ‘dynamic_dev_dbg’
 
 Redundant.
 
->=20
+> 
 > drivers/tty/serial/8250/8250_pnp.c:467:2: note: in expansion of macro
-> =E2=80=98dev_dbg=E2=80=99
-> =C2=A0 dev_dbg(&dev->dev,
-> =C2=A0 ^
-> include/linux/dynamic_debug.h:64:16: warning: format =E2=80=98%lx=E2=80=
-=99 expects
+> ‘dev_dbg’
+>   dev_dbg(&dev->dev,
+>   ^
+> include/linux/dynamic_debug.h:64:16: warning: format ‘%lx’ expects
 > argument
 > of [...]
 
 OK.
 
->=20
+> 
 > include/linux/dynamic_debug.h:84:2: note: in expansion of macro
-> =E2=80=98DEFINE_DYNAMIC_DEBUG_METADATA=E2=80=99
->=20
+> ‘DEFINE_DYNAMIC_DEBUG_METADATA’
+> 
 > include/linux/device.h:1179:2: note: in expansion of macro
-> =E2=80=98dynamic_dev_dbg=E2=80=99
+> ‘dynamic_dev_dbg’
 
 Redundant.
 
->=20
+> 
 > drivers/tty/serial/8250/8250_pnp.c:467:2: note: in expansion of macro
-> =E2=80=98dev_dbg=E2=80=99
-> =C2=A0 dev_dbg(&dev->dev,
-> =C2=A0 ^
->=20
+> ‘dev_dbg’
+>   dev_dbg(&dev->dev,
+>   ^
+> 
 > Those warnings never got triggered, because the command was nested
 > in an #ifdef, which is removed by a patch of this series.
->=20
-> Signed-off-by: Anton W=C3=BCrfel <anton.wuerfel@fau.de>
+> 
+> Signed-off-by: Anton Würfel <anton.wuerfel@fau.de>
 > Signed-off-by: Phillip Raffeck <phillip.raffeck@fau.de>
 > Cc: linux-kernel@i4.cs.fau.de
 > ---
-> =C2=A0drivers/tty/serial/8250/8250_pnp.c | 4 ++--
-> =C2=A01 file changed, 2 insertions(+), 2 deletions(-)
->=20
+>  drivers/tty/serial/8250/8250_pnp.c | 4 ++--
+>  1 file changed, 2 insertions(+), 2 deletions(-)
+> 
 > diff --git a/drivers/tty/serial/8250/8250_pnp.c
 > b/drivers/tty/serial/8250/8250_pnp.c
 > index 0c32c59..92f4412 100644
@@ -73,15 +69,15 @@ Redundant.
 > +++ b/drivers/tty/serial/8250/8250_pnp.c
 > @@ -465,8 +465,8 @@ serial_pnp_probe(struct pnp_dev *dev, const
 > struct pnp_device_id *dev_id)
-> =C2=A0		return -ENODEV;
-> =C2=A0
-> =C2=A0	dev_dbg(&dev->dev,
-> -		=C2=A0"Setup PNP port: port %x, mem 0x%lx, irq %d, type
+>  		return -ENODEV;
+>  
+>  	dev_dbg(&dev->dev,
+> -		 "Setup PNP port: port %x, mem 0x%lx, irq %d, type
 > %d\n",
-> -		=C2=A0uart.port.iobase, uart.port.mapbase,
-> +		=C2=A0"Setup PNP port: port %lx, mem 0x%lx, irq %d, type
+> -		 uart.port.iobase, uart.port.mapbase,
+> +		 "Setup PNP port: port %lx, mem 0x%lx, irq %d, type
 > %d\n",
-> +		=C2=A0uart.port.iobase, (unsigned long)uart.port.mapbase,
+> +		 uart.port.iobase, (unsigned long)uart.port.mapbase,
 
 This approach is not fully correct. In Linux kernel we have %p
 extensions to cover some custom types such as resource_size_t, of which
@@ -94,16 +90,10 @@ uart.port.iobase, &uart.port.mapbase,
 
 looks better.
 
-> =C2=A0		=C2=A0uart.port.irq, uart.port.iotype);
-> =C2=A0
-> =C2=A0	if (flags & CIR_PORT) {
+>  		 uart.port.irq, uart.port.iotype);
+>  
+>  	if (flags & CIR_PORT) {
 
---=20
+-- 
 Andy Shevchenko <andriy.shevchenko@linux.intel.com>
 Intel Finland Oy
-
---
-To unsubscribe from this list: send the line "unsubscribe linux-parisc"=
- in
-the body of a message to majordomo@vger.kernel.org
-More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff --git a/a/content_digest b/N2/content_digest
index 618d2da..2693b76 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -24,8 +24,7 @@
  "\00:1\0"
  "b\0"
  "On Wed, 2016-01-13 at 22:29 +0100, Anton Wuerfel wrote:\n"
- "> This patch fixes compiler warnings about wrong conversion specifiers=C2=\n"
- "=A0\n"
+ "> This patch fixes compiler warnings about wrong conversion specifiers\302\240\n"
  "\n"
  "This patch obviously doesn't _fix_warnings_, rather changes specifiers\n"
  "to get it consistent with argument.\n"
@@ -33,64 +32,61 @@
  "> used\n"
  "> in a debug output in 8250_pnp.c. The precise warning is:\n"
  "\n"
- "Usually there is no need to cite all lines=E2=80=A6\n"
+ "Usually there is no need to cite all lines\342\200\246\n"
  "\n"
- ">=20\n"
- "> drivers/tty/serial/8250/8250_pnp.c: In function =E2=80=98serial_pnp_p=\n"
- "robe=E2=80=99:\n"
- "> include/linux/dynamic_debug.h:64:16: warning: format =E2=80=98%x=E2=80=\n"
- "=99 expects\n"
+ "> \n"
+ "> drivers/tty/serial/8250/8250_pnp.c: In function \342\200\230serial_pnp_probe\342\200\231:\n"
+ "> include/linux/dynamic_debug.h:64:16: warning: format \342\200\230%x\342\200\231 expects\n"
  "> argument\n"
  "> of [...]\n"
  "\n"
  "OK.\n"
  "\n"
- ">=20\n"
+ "> \n"
  "> include/linux/dynamic_debug.h:84:2: note: in expansion of macro\n"
- "> =E2=80=98DEFINE_DYNAMIC_DEBUG_METADATA=E2=80=99\n"
- ">=20\n"
+ "> \342\200\230DEFINE_DYNAMIC_DEBUG_METADATA\342\200\231\n"
+ "> \n"
  "> include/linux/device.h:1179:2: note: in expansion of macro\n"
- "> =E2=80=98dynamic_dev_dbg=E2=80=99\n"
+ "> \342\200\230dynamic_dev_dbg\342\200\231\n"
  "\n"
  "Redundant.\n"
  "\n"
- ">=20\n"
+ "> \n"
  "> drivers/tty/serial/8250/8250_pnp.c:467:2: note: in expansion of macro\n"
- "> =E2=80=98dev_dbg=E2=80=99\n"
- "> =C2=A0 dev_dbg(&dev->dev,\n"
- "> =C2=A0 ^\n"
- "> include/linux/dynamic_debug.h:64:16: warning: format =E2=80=98%lx=E2=80=\n"
- "=99 expects\n"
+ "> \342\200\230dev_dbg\342\200\231\n"
+ "> \302\240 dev_dbg(&dev->dev,\n"
+ "> \302\240 ^\n"
+ "> include/linux/dynamic_debug.h:64:16: warning: format \342\200\230%lx\342\200\231 expects\n"
  "> argument\n"
  "> of [...]\n"
  "\n"
  "OK.\n"
  "\n"
- ">=20\n"
+ "> \n"
  "> include/linux/dynamic_debug.h:84:2: note: in expansion of macro\n"
- "> =E2=80=98DEFINE_DYNAMIC_DEBUG_METADATA=E2=80=99\n"
- ">=20\n"
+ "> \342\200\230DEFINE_DYNAMIC_DEBUG_METADATA\342\200\231\n"
+ "> \n"
  "> include/linux/device.h:1179:2: note: in expansion of macro\n"
- "> =E2=80=98dynamic_dev_dbg=E2=80=99\n"
+ "> \342\200\230dynamic_dev_dbg\342\200\231\n"
  "\n"
  "Redundant.\n"
  "\n"
- ">=20\n"
+ "> \n"
  "> drivers/tty/serial/8250/8250_pnp.c:467:2: note: in expansion of macro\n"
- "> =E2=80=98dev_dbg=E2=80=99\n"
- "> =C2=A0 dev_dbg(&dev->dev,\n"
- "> =C2=A0 ^\n"
- ">=20\n"
+ "> \342\200\230dev_dbg\342\200\231\n"
+ "> \302\240 dev_dbg(&dev->dev,\n"
+ "> \302\240 ^\n"
+ "> \n"
  "> Those warnings never got triggered, because the command was nested\n"
  "> in an #ifdef, which is removed by a patch of this series.\n"
- ">=20\n"
- "> Signed-off-by: Anton W=C3=BCrfel <anton.wuerfel@fau.de>\n"
+ "> \n"
+ "> Signed-off-by: Anton W\303\274rfel <anton.wuerfel@fau.de>\n"
  "> Signed-off-by: Phillip Raffeck <phillip.raffeck@fau.de>\n"
  "> Cc: linux-kernel@i4.cs.fau.de\n"
  "> ---\n"
- "> =C2=A0drivers/tty/serial/8250/8250_pnp.c | 4 ++--\n"
- "> =C2=A01 file changed, 2 insertions(+), 2 deletions(-)\n"
- ">=20\n"
+ "> \302\240drivers/tty/serial/8250/8250_pnp.c | 4 ++--\n"
+ "> \302\2401 file changed, 2 insertions(+), 2 deletions(-)\n"
+ "> \n"
  "> diff --git a/drivers/tty/serial/8250/8250_pnp.c\n"
  "> b/drivers/tty/serial/8250/8250_pnp.c\n"
  "> index 0c32c59..92f4412 100644\n"
@@ -98,15 +94,15 @@
  "> +++ b/drivers/tty/serial/8250/8250_pnp.c\n"
  "> @@ -465,8 +465,8 @@ serial_pnp_probe(struct pnp_dev *dev, const\n"
  "> struct pnp_device_id *dev_id)\n"
- "> =C2=A0\t\treturn -ENODEV;\n"
- "> =C2=A0\n"
- "> =C2=A0\tdev_dbg(&dev->dev,\n"
- "> -\t\t=C2=A0\"Setup PNP port: port %x, mem 0x%lx, irq %d, type\n"
+ "> \302\240\t\treturn -ENODEV;\n"
+ "> \302\240\n"
+ "> \302\240\tdev_dbg(&dev->dev,\n"
+ "> -\t\t\302\240\"Setup PNP port: port %x, mem 0x%lx, irq %d, type\n"
  "> %d\\n\",\n"
- "> -\t\t=C2=A0uart.port.iobase, uart.port.mapbase,\n"
- "> +\t\t=C2=A0\"Setup PNP port: port %lx, mem 0x%lx, irq %d, type\n"
+ "> -\t\t\302\240uart.port.iobase, uart.port.mapbase,\n"
+ "> +\t\t\302\240\"Setup PNP port: port %lx, mem 0x%lx, irq %d, type\n"
  "> %d\\n\",\n"
- "> +\t\t=C2=A0uart.port.iobase, (unsigned long)uart.port.mapbase,\n"
+ "> +\t\t\302\240uart.port.iobase, (unsigned long)uart.port.mapbase,\n"
  "\n"
  "This approach is not fully correct. In Linux kernel we have %p\n"
  "extensions to cover some custom types such as resource_size_t, of which\n"
@@ -119,18 +115,12 @@
  "\n"
  "looks better.\n"
  "\n"
- "> =C2=A0\t\t=C2=A0uart.port.irq, uart.port.iotype);\n"
- "> =C2=A0\n"
- "> =C2=A0\tif (flags & CIR_PORT) {\n"
+ "> \302\240\t\t\302\240uart.port.irq, uart.port.iotype);\n"
+ "> \302\240\n"
+ "> \302\240\tif (flags & CIR_PORT) {\n"
  "\n"
- "--=20\n"
+ "-- \n"
  "Andy Shevchenko <andriy.shevchenko@linux.intel.com>\n"
- "Intel Finland Oy\n"
- "\n"
- "--\n"
- "To unsubscribe from this list: send the line \"unsubscribe linux-parisc\"=\n"
- " in\n"
- "the body of a message to majordomo@vger.kernel.org\n"
- More majordomo info at  http://vger.kernel.org/majordomo-info.html
+ Intel Finland Oy
 
-a114a8544c3ceb552af5bbf3eb57e61cd07409e2bb1cb0fac65265bfeee6ab77
+e26cf07972285601ff0a7584c80a506dcc36953f501e03384344c1b27f149e7e

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.