[PATCH v3 2/4] x86/mce: Make 3 functions non-static

2019-09-16 Thread Tony W Wang-oc
These functions are declared static and cannot be used in others .c source file. this commit removes the static attribute and adds the declaration to the header for these functions. Signed-off-by: Tony W Wang-oc --- arch/x86/kernel/cpu/mce/intel.c| 6 +++--- arch/x86/kernel/cpu/mce/internal.

Re: [PATCH v3 2/4] x86/mce: Make 3 functions non-static

2019-09-16 Thread Tony W Wang-oc
On Mon, Sep 16, 2019, Thomas Gleixner wrote: >On Mon, 16 Sep 2019, Tony W Wang-oc wrote: > >> On Mon, Sep 16, 2019, Thomas Gleixner wrote: >> >On Wed, 11 Sep 2019, Tony W Wang-oc wrote: >> > >> >> These functions are declared static and cannot be used in others >> >> .c source file. this commit rem

Re: [PATCH v3 2/4] x86/mce: Make 3 functions non-static

2019-09-16 Thread Thomas Gleixner
On Mon, 16 Sep 2019, Tony W Wang-oc wrote: > On Mon, Sep 16, 2019, Thomas Gleixner wrote: > >On Wed, 11 Sep 2019, Tony W Wang-oc wrote: > > > >> These functions are declared static and cannot be used in others > >> .c source file. this commit removes the static attribute and adds > >> the declarat

Re: [PATCH v3 2/4] x86/mce: Make 3 functions non-static

2019-09-16 Thread Tony W Wang-oc
On Mon, Sep 16, 2019, Thomas Gleixner wrote: >On Wed, 11 Sep 2019, Tony W Wang-oc wrote: > >> These functions are declared static and cannot be used in others >> .c source file. this commit removes the static attribute and adds >> the declaration to the header for these functions. > >I'm not Cc'ed

Re: [PATCH v3 2/4] x86/mce: Make 3 functions non-static

2019-09-16 Thread Thomas Gleixner
On Wed, 11 Sep 2019, Tony W Wang-oc wrote: > These functions are declared static and cannot be used in others > .c source file. this commit removes the static attribute and adds > the declaration to the header for these functions. I'm not Cc'ed on any patches which use those functions. Please Cc

[PATCH v3 2/4] x86/mce: Make 3 functions non-static

2019-09-11 Thread Tony W Wang-oc
These functions are declared static and cannot be used in others .c source file. this commit removes the static attribute and adds the declaration to the header for these functions. Signed-off-by: Tony W Wang-oc --- v2->v3: - Revert 1 unused function arch/x86/kernel/cpu/mce/intel.c| 6 +++-