Re: [PATCH 1/6] x86/early-quirks: Rename duplicate define of dev_err

2018-05-13 Thread Joe Perches
On Sun, 2018-05-13 at 15:03 +0200, Thomas Gleixner wrote: > On Wed, 9 May 2018, Joe Perches wrote: > > > dev_err is becoming a macro calling _dev_err to allow prefixing of > > dev_fmt to any dev_ use that has a #define dev_fmt(fmt) similar > > to the existing #define pr_fmt(fmt) uses. > > > >

Re: [PATCH 1/6] x86/early-quirks: Rename duplicate define of dev_err

2018-05-13 Thread Joe Perches
On Sun, 2018-05-13 at 15:03 +0200, Thomas Gleixner wrote: > On Wed, 9 May 2018, Joe Perches wrote: > > > dev_err is becoming a macro calling _dev_err to allow prefixing of > > dev_fmt to any dev_ use that has a #define dev_fmt(fmt) similar > > to the existing #define pr_fmt(fmt) uses. > > > >

Re: [PATCH 1/6] x86/early-quirks: Rename duplicate define of dev_err

2018-05-13 Thread Thomas Gleixner
On Wed, 9 May 2018, Joe Perches wrote: > dev_err is becoming a macro calling _dev_err to allow prefixing of > dev_fmt to any dev_ use that has a #define dev_fmt(fmt) similar > to the existing #define pr_fmt(fmt) uses. > > Remove this dev_err macro and convert the existing two uses to pr_err. >

Re: [PATCH 1/6] x86/early-quirks: Rename duplicate define of dev_err

2018-05-13 Thread Thomas Gleixner
On Wed, 9 May 2018, Joe Perches wrote: > dev_err is becoming a macro calling _dev_err to allow prefixing of > dev_fmt to any dev_ use that has a #define dev_fmt(fmt) similar > to the existing #define pr_fmt(fmt) uses. > > Remove this dev_err macro and convert the existing two uses to pr_err. >

[PATCH 1/6] x86/early-quirks: Rename duplicate define of dev_err

2018-05-09 Thread Joe Perches
dev_err is becoming a macro calling _dev_err to allow prefixing of dev_fmt to any dev_ use that has a #define dev_fmt(fmt) similar to the existing #define pr_fmt(fmt) uses. Remove this dev_err macro and convert the existing two uses to pr_err. This allows clean compilation in the patch that

[PATCH 1/6] x86/early-quirks: Rename duplicate define of dev_err

2018-05-09 Thread Joe Perches
dev_err is becoming a macro calling _dev_err to allow prefixing of dev_fmt to any dev_ use that has a #define dev_fmt(fmt) similar to the existing #define pr_fmt(fmt) uses. Remove this dev_err macro and convert the existing two uses to pr_err. This allows clean compilation in the patch that