Re: [PATCH] x86/kernel: use pr_() and dev_

2016-02-09 Thread Joe Perches
On Tue, 2016-02-09 at 10:57 +0100, Ingo Molnar wrote: > * Chen Yucong wrote: > > > arch/x86/kernel/* use a mixture of printk(KERN_ ) and pr_(). > > This patch converts the bulk of printk(KERN_ ) to pr_() and > > uses dev_dbg() instead of the dev_printk(KERN_DEBUG,). All pr_warning() > > calls

Re: [PATCH] x86/kernel: use pr_() and dev_

2016-02-09 Thread Thomas Gleixner
On Tue, 9 Feb 2016, Ingo Molnar wrote: > > * Chen Yucong wrote: > > > arch/x86/kernel/* use a mixture of printk(KERN_ ) and pr_(). > > This patch converts the bulk of printk(KERN_ ) to pr_() and > > uses dev_dbg() instead of the dev_printk(KERN_DEBUG,). All pr_warning() > > calls have been

Re: [PATCH] x86/kernel: use pr_() and dev_

2016-02-09 Thread Ingo Molnar
* Chen Yucong wrote: > arch/x86/kernel/* use a mixture of printk(KERN_ ) and pr_(). > This patch converts the bulk of printk(KERN_ ) to pr_() and > uses dev_dbg() instead of the dev_printk(KERN_DEBUG,). All pr_warning() > calls have been replaced with pr_warn(). > > Not sure what to do about

Re: [PATCH] x86/kernel: use pr_() and dev_

2016-02-09 Thread Thomas Gleixner
On Tue, 9 Feb 2016, Ingo Molnar wrote: > > * Chen Yucong wrote: > > > arch/x86/kernel/* use a mixture of printk(KERN_ ) and pr_(). > > This patch converts the bulk of printk(KERN_ ) to pr_() and > > uses dev_dbg() instead of the dev_printk(KERN_DEBUG,). All pr_warning() > >

Re: [PATCH] x86/kernel: use pr_() and dev_

2016-02-09 Thread Ingo Molnar
* Chen Yucong wrote: > arch/x86/kernel/* use a mixture of printk(KERN_ ) and pr_(). > This patch converts the bulk of printk(KERN_ ) to pr_() and > uses dev_dbg() instead of the dev_printk(KERN_DEBUG,). All pr_warning() > calls have been replaced with pr_warn(). > > Not sure

Re: [PATCH] x86/kernel: use pr_() and dev_

2016-02-09 Thread Joe Perches
On Tue, 2016-02-09 at 10:57 +0100, Ingo Molnar wrote: > * Chen Yucong wrote: > > > arch/x86/kernel/* use a mixture of printk(KERN_ ) and pr_(). > > This patch converts the bulk of printk(KERN_ ) to pr_() and > > uses dev_dbg() instead of the dev_printk(KERN_DEBUG,). All

[PATCH] x86/kernel: use pr_() and dev_

2016-02-05 Thread Chen Yucong
arch/x86/kernel/* use a mixture of printk(KERN_ ) and pr_(). This patch converts the bulk of printk(KERN_ ) to pr_() and uses dev_dbg() instead of the dev_printk(KERN_DEBUG,). All pr_warning() calls have been replaced with pr_warn(). Not sure what to do about the printk(KERN_DEFAULT) and printk()

[PATCH] x86/kernel: use pr_() and dev_

2016-02-05 Thread Chen Yucong
arch/x86/kernel/* use a mixture of printk(KERN_ ) and pr_(). This patch converts the bulk of printk(KERN_ ) to pr_() and uses dev_dbg() instead of the dev_printk(KERN_DEBUG,). All pr_warning() calls have been replaced with pr_warn(). Not sure what to do about the printk(KERN_DEFAULT) and printk()