Linux PARISC architecture development
 help / color / mirror / Atom feed
* [PATCH 00/16] remove trailing spaces in messages
@ 2010-02-06 17:44 Frans Pop
  2010-02-06 17:47 ` [PATCH 07/16] parisc: remove trailing space " Frans Pop
  2010-02-06 20:57 ` [PATCH 00/16] remove trailing spaces " Frans Pop
  0 siblings, 2 replies; 4+ messages in thread
From: Frans Pop @ 2010-02-06 17:44 UTC (permalink / raw)
  To: linux-kernel
  Cc: Benjamin Herrenschmidt, David S. Miller, Fenghua Yu, Helge Deller,
	Ingo Molnar, Jeff Dike, Jiri Kosina, Kyle McMartin, linux-alpha,
	linux-arm-kernel, linux-cris-kernel, linux-ia64, linux-m68k,
	linux-mips, linux-parisc, linux-pm, linuxppc-dev, linux-s390,
	Michal Simek, microblaze-uclinux, Mike Frysinger, Paul Mackerras,
	Rafael J. Wysocki, Ralf 

This is a first series of patches to remove trailing spaces in messages. 
Patches cover arch-specific code plus one fix for PM and one in 
Documentation. Depending on how this series is received I'll continue
with other parts of the kernel.

Benefits are:
- general cleanup and consistency
- minor reduction in kernel size and user's log file size
- reduced annoyance for people writing logcheck rules

The patch for m68k has been rebased against linux-next; all other
patches apply against both mainline and -next (as of 5-2).

Shortstat:
 74 files changed, 135 insertions(+), 136 deletions(-)

Frans Pop (16):
      alpha: remove trailing spaces in messages
      arm: remove trailing spaces in messages
      ia64: remove trailing space in messages
      m68k: remove trailing space in messages
      microblaze: remove trailing space in messages
      mips: remove trailing space in messages
      parisc: remove trailing space in messages
      s390: remove trailing space in messages
      sparc: remove trailing space in messages
      x86: remove trailing space in messages
      blackfin: remove trailing space in messages
      cris/trivial: remove trailing space in message
      powerpc: remove trailing space in messages
      um: remove trailing space in messages
      PM: remove trailing space in message
      trivial: remove trailing space in spidev test program

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

* [PATCH 07/16] parisc: remove trailing space in messages
  2010-02-06 17:44 [PATCH 00/16] remove trailing spaces in messages Frans Pop
@ 2010-02-06 17:47 ` Frans Pop
  2010-02-06 23:53   ` Kyle McMartin
  2010-02-06 20:57 ` [PATCH 00/16] remove trailing spaces " Frans Pop
  1 sibling, 1 reply; 4+ messages in thread
From: Frans Pop @ 2010-02-06 17:47 UTC (permalink / raw)
  To: linux-kernel; +Cc: Frans Pop, linux-parisc, Kyle McMartin, Helge Deller

Signed-off-by: Frans Pop <elendil@planet.nl>
Cc: linux-parisc@vger.kernel.org
Cc: Kyle McMartin <kyle@mcmartin.ca>
Cc: Helge Deller <deller@gmx.de>
---
 arch/parisc/kernel/cache.c       |    4 ++--
 drivers/parisc/eisa_enumerator.c |    2 +-
 drivers/parisc/superio.c         |    2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/parisc/kernel/cache.c b/arch/parisc/kernel/cache.c
index b6ed34d..fc6c8cb 100644
--- a/arch/parisc/kernel/cache.c
+++ b/arch/parisc/kernel/cache.c
@@ -171,14 +171,14 @@ parisc_cache_init(void)
 		cache_info.ic_conf.cc_cst,
 		cache_info.ic_conf.cc_hv);
 
-	printk("D-TLB conf: sh %d page %d cst %d aid %d pad1 %d \n",
+	printk("D-TLB conf: sh %d page %d cst %d aid %d pad1 %d\n",
 		cache_info.dt_conf.tc_sh,
 		cache_info.dt_conf.tc_page,
 		cache_info.dt_conf.tc_cst,
 		cache_info.dt_conf.tc_aid,
 		cache_info.dt_conf.tc_pad1);
 
-	printk("I-TLB conf: sh %d page %d cst %d aid %d pad1 %d \n",
+	printk("I-TLB conf: sh %d page %d cst %d aid %d pad1 %d\n",
 		cache_info.it_conf.tc_sh,
 		cache_info.it_conf.tc_page,
 		cache_info.it_conf.tc_cst,
diff --git a/drivers/parisc/eisa_enumerator.c b/drivers/parisc/eisa_enumerator.c
index 0be1d50..caa1531 100644
--- a/drivers/parisc/eisa_enumerator.c
+++ b/drivers/parisc/eisa_enumerator.c
@@ -460,7 +460,7 @@ static int init_slot(int slot, struct eeprom_eisa_slot_info *es)
 			       slot, id_string);
 			
 			print_eisa_id(id_string, es->eisa_slot_id);
-			printk(" expected %s \n", id_string);
+			printk(" expected %s\n", id_string);
 		
 			return -1;	
 			
diff --git a/drivers/parisc/superio.c b/drivers/parisc/superio.c
index a35c9c5..f7806d8 100644
--- a/drivers/parisc/superio.c
+++ b/drivers/parisc/superio.c
@@ -169,7 +169,7 @@ superio_init(struct pci_dev *pcidev)
 	/* ...then properly fixup the USB to point at suckyio PIC */
 	sio->usb_pdev->irq = superio_fixup_irq(sio->usb_pdev);
 
-	printk(KERN_INFO PFX "Found NS87560 Legacy I/O device at %s (IRQ %i) \n",
+	printk(KERN_INFO PFX "Found NS87560 Legacy I/O device at %s (IRQ %i)\n",
 	       pci_name(pdev), pdev->irq);
 
 	pci_read_config_dword (pdev, SIO_SP1BAR, &sio->sp1_base);
-- 
1.6.6.1

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

* Re: [PATCH 00/16] remove trailing spaces in messages
  2010-02-06 17:44 [PATCH 00/16] remove trailing spaces in messages Frans Pop
  2010-02-06 17:47 ` [PATCH 07/16] parisc: remove trailing space " Frans Pop
@ 2010-02-06 20:57 ` Frans Pop
  1 sibling, 0 replies; 4+ messages in thread
From: Frans Pop @ 2010-02-06 20:57 UTC (permalink / raw)
  To: linux-kernel
  Cc: linux-alpha, linux-ia64, linux-parisc, linux-s390, sparclinux

Resending the patch cover letter for vger only as it didn't reach there for 
some reason (# recipients maybe?).

+++++++++++
This is a first series of patches to remove trailing spaces in messages. 
Patches cover arch-specific code plus one fix for PM and one in 
Documentation. Depending on how this series is received I'll continue
with other parts of the kernel.

Benefits are:
- general cleanup and consistency
- minor reduction in kernel size and user's log file size
- reduced annoyance for people writing logcheck rules

The patch for m68k has been rebased against linux-next; all other
patches apply against both mainline and -next (as of 5-2).

Shortstat:
 74 files changed, 135 insertions(+), 136 deletions(-)

Frans Pop (16):
      alpha: remove trailing spaces in messages
      arm: remove trailing spaces in messages
      ia64: remove trailing space in messages
      m68k: remove trailing space in messages
      microblaze: remove trailing space in messages
      mips: remove trailing space in messages
      parisc: remove trailing space in messages
      s390: remove trailing space in messages
      sparc: remove trailing space in messages
      x86: remove trailing space in messages
      blackfin: remove trailing space in messages
      cris/trivial: remove trailing space in message
      powerpc: remove trailing space in messages
      um: remove trailing space in messages
      PM: remove trailing space in message
      trivial: remove trailing space in spidev test program

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

* Re: [PATCH 07/16] parisc: remove trailing space in messages
  2010-02-06 17:47 ` [PATCH 07/16] parisc: remove trailing space " Frans Pop
@ 2010-02-06 23:53   ` Kyle McMartin
  0 siblings, 0 replies; 4+ messages in thread
From: Kyle McMartin @ 2010-02-06 23:53 UTC (permalink / raw)
  To: Frans Pop; +Cc: linux-kernel, linux-parisc, Kyle McMartin, Helge Deller

On Sat, Feb 06, 2010 at 06:47:14PM +0100, Frans Pop wrote:
> Signed-off-by: Frans Pop <elendil@planet.nl>
> Cc: linux-parisc@vger.kernel.org
> Cc: Kyle McMartin <kyle@mcmartin.ca>
> Cc: Helge Deller <deller@gmx.de>

I'll apply this.

Thanks Frans.

regards, Kyle

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

end of thread, other threads:[~2010-02-06 23:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-06 17:44 [PATCH 00/16] remove trailing spaces in messages Frans Pop
2010-02-06 17:47 ` [PATCH 07/16] parisc: remove trailing space " Frans Pop
2010-02-06 23:53   ` Kyle McMartin
2010-02-06 20:57 ` [PATCH 00/16] remove trailing spaces " Frans Pop

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox