Re: [PATCH] Prefix each line of multiline printk(KERN_level foo\nbar) with KERN_level

2007-08-29 Thread Maciej W. Rozycki
On Sun, 26 Aug 2007, Geert Uytterhoeven wrote: What I mean is that probably there used to be a printk() call starting with `\n'. Then someone added a `KERN_ERR' in front of it. I gather '\n' at the beginning is to assure the following line is output on a separate line rather than as a

Re: [PATCH] Prefix each line of multiline printk(KERN_level foo\nbar) with KERN_level

2007-08-26 Thread Geert Uytterhoeven
On Fri, 24 Aug 2007, Joe Perches wrote: Corrected printk calls with multiple output lines which did not correctly preface each line with KERN_level Fixed uses of some single lines with too many KERN_level --- a/arch/arm/kernel/ecard.c +++ b/arch/arm/kernel/ecard.c @@ -547,7 +547,8 @@

Re: [PATCH] Prefix each line of multiline printk(KERN_level foo\nbar) with KERN_level

2007-08-26 Thread Mike Frysinger
On 8/26/07, Geert Uytterhoeven [EMAIL PROTECTED] wrote: On Fri, 24 Aug 2007, Joe Perches wrote: Corrected printk calls with multiple output lines which did not correctly preface each line with KERN_level Fixed uses of some single lines with too many KERN_level ---

Re: [PATCH] Prefix each line of multiline printk(KERN_level foo\nbar) with KERN_level

2007-08-26 Thread Geert Uytterhoeven
On Sun, 26 Aug 2007, Mike Frysinger wrote: On 8/26/07, Geert Uytterhoeven [EMAIL PROTECTED] wrote: On Fri, 24 Aug 2007, Joe Perches wrote: Corrected printk calls with multiple output lines which did not correctly preface each line with KERN_level Fixed uses of some single lines with