* [PATCH 00/16] remove trailing spaces in messages
@ 2010-02-06 17:44 Frans Pop
2010-02-06 17:47 ` [PATCH 01/16] alpha: " Frans Pop
2010-02-06 20:57 ` [PATCH 00/16] " 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 01/16] alpha: 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 ` Frans Pop
2010-02-07 0:54 ` Matt Turner
2010-02-06 20:57 ` [PATCH 00/16] " 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-alpha
Signed-off-by: Frans Pop <elendil@planet.nl>
Cc: linux-alpha@vger.kernel.org
---
arch/alpha/kernel/sys_dp264.c | 2 +-
arch/alpha/kernel/sys_titan.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/alpha/kernel/sys_dp264.c b/arch/alpha/kernel/sys_dp264.c
index d64e1e4..4026502 100644
--- a/arch/alpha/kernel/sys_dp264.c
+++ b/arch/alpha/kernel/sys_dp264.c
@@ -224,7 +224,7 @@ static void
dp264_device_interrupt(unsigned long vector)
{
#if 1
- printk("dp264_device_interrupt: NOT IMPLEMENTED YET!! \n");
+ printk("dp264_device_interrupt: NOT IMPLEMENTED YET!!\n");
#else
unsigned long pld;
unsigned int i;
diff --git a/arch/alpha/kernel/sys_titan.c b/arch/alpha/kernel/sys_titan.c
index 2880533..9008d0f 100644
--- a/arch/alpha/kernel/sys_titan.c
+++ b/arch/alpha/kernel/sys_titan.c
@@ -171,7 +171,7 @@ titan_set_irq_affinity(unsigned int irq, const struct cpumask *affinity)
static void
titan_device_interrupt(unsigned long vector)
{
- printk("titan_device_interrupt: NOT IMPLEMENTED YET!! \n");
+ printk("titan_device_interrupt: NOT IMPLEMENTED YET!!\n");
}
static void
--
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 01/16] alpha: " 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 01/16] alpha: remove trailing spaces in messages
2010-02-06 17:47 ` [PATCH 01/16] alpha: " Frans Pop
@ 2010-02-07 0:54 ` Matt Turner
0 siblings, 0 replies; 4+ messages in thread
From: Matt Turner @ 2010-02-07 0:54 UTC (permalink / raw)
To: Frans Pop; +Cc: linux-kernel, linux-alpha
On Sat, Feb 6, 2010 at 12:47 PM, Frans Pop <elendil@planet.nl> wrote:
> Signed-off-by: Frans Pop <elendil@planet.nl>
> Cc: linux-alpha@vger.kernel.org
> ---
> arch/alpha/kernel/sys_dp264.c | 2 +-
> arch/alpha/kernel/sys_titan.c | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/arch/alpha/kernel/sys_dp264.c b/arch/alpha/kernel/sys_dp264.c
> index d64e1e4..4026502 100644
> --- a/arch/alpha/kernel/sys_dp264.c
> +++ b/arch/alpha/kernel/sys_dp264.c
> @@ -224,7 +224,7 @@ static void
> dp264_device_interrupt(unsigned long vector)
> {
> #if 1
> - printk("dp264_device_interrupt: NOT IMPLEMENTED YET!! \n");
> + printk("dp264_device_interrupt: NOT IMPLEMENTED YET!!\n");
> #else
> unsigned long pld;
> unsigned int i;
> diff --git a/arch/alpha/kernel/sys_titan.c b/arch/alpha/kernel/sys_titan.c
> index 2880533..9008d0f 100644
> --- a/arch/alpha/kernel/sys_titan.c
> +++ b/arch/alpha/kernel/sys_titan.c
> @@ -171,7 +171,7 @@ titan_set_irq_affinity(unsigned int irq, const struct cpumask *affinity)
> static void
> titan_device_interrupt(unsigned long vector)
> {
> - printk("titan_device_interrupt: NOT IMPLEMENTED YET!! \n");
> + printk("titan_device_interrupt: NOT IMPLEMENTED YET!!\n");
> }
>
> static void
> --
> 1.6.6.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-alpha" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
Thanks. I'll apply this to my tree.
Matt
--
To unsubscribe from this list: send the line "unsubscribe linux-alpha" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-02-07 0:54 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 01/16] alpha: " Frans Pop
2010-02-07 0:54 ` Matt Turner
2010-02-06 20:57 ` [PATCH 00/16] " Frans Pop
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).