linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] x86: don't add new __cpuinit users to Merrifield platform code
@ 2014-01-22 17:35 Paul Gortmaker
  2014-01-22 18:08 ` David Cohen
  2014-01-22 22:30 ` [tip:x86/intel-mid] x86: Don' t " tip-bot for Paul Gortmaker
  0 siblings, 2 replies; 6+ messages in thread
From: Paul Gortmaker @ 2014-01-22 17:35 UTC (permalink / raw)
  To: linux-kernel; +Cc: x86, Paul Gortmaker, David Cohen, Fei Yang, H. Peter Anvin

Commit bc20aa48bbb3068224a1c91f8332971fdb689fad ("x86, intel-mid:
Add Merrifield platform support")  added new instances of __cpuinit
usage.  We removed this a couple versions ago; we now want to remove
the compat no-op stubs.  Introducing new users is not what we want to
see at this point in time, as it will break once the stubs are gone.

This also fixes an out of sync __init vs. __cpuinit -- as the former
is real, and the latter is a no-op; hence it would have been a section
mismatch.

Cc: David Cohen <david.a.cohen@linux.intel.com>
Cc: Fei Yang <fei.yang@intel.com>
Cc: H. Peter Anvin <hpa@linux.intel.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
---

[patch will be added to init cleanup series:
   http://git.kernel.org/cgit/linux/kernel/git/paulg/init.git/  ]

 arch/x86/platform/intel-mid/intel_mid_weak_decls.h | 2 +-
 arch/x86/platform/intel-mid/mrfl.c                 | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/x86/platform/intel-mid/intel_mid_weak_decls.h b/arch/x86/platform/intel-mid/intel_mid_weak_decls.h
index 41fe17d0d8ff..46aa25c8ce06 100644
--- a/arch/x86/platform/intel-mid/intel_mid_weak_decls.h
+++ b/arch/x86/platform/intel-mid/intel_mid_weak_decls.h
@@ -16,4 +16,4 @@
  */
 extern void *get_penwell_ops(void) __attribute__((weak));
 extern void *get_cloverview_ops(void) __attribute__((weak));
-extern void * __init get_tangier_ops(void) __attribute__((weak));
+extern void *get_tangier_ops(void) __attribute__((weak));
diff --git a/arch/x86/platform/intel-mid/mrfl.c b/arch/x86/platform/intel-mid/mrfl.c
index 09d10159e7b7..28b636a21887 100644
--- a/arch/x86/platform/intel-mid/mrfl.c
+++ b/arch/x86/platform/intel-mid/mrfl.c
@@ -97,7 +97,7 @@ static struct intel_mid_ops tangier_ops = {
 	.arch_setup = tangier_arch_setup,
 };
 
-void * __cpuinit get_tangier_ops()
+void *get_tangier_ops()
 {
 	return &tangier_ops;
 }
-- 
1.8.5.2


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] x86: don't add new __cpuinit users to Merrifield platform code
  2014-01-22 17:35 [PATCH] x86: don't add new __cpuinit users to Merrifield platform code Paul Gortmaker
@ 2014-01-22 18:08 ` David Cohen
  2014-01-22 18:09   ` David Cohen
  2014-01-22 22:30 ` [tip:x86/intel-mid] x86: Don' t " tip-bot for Paul Gortmaker
  1 sibling, 1 reply; 6+ messages in thread
From: David Cohen @ 2014-01-22 18:08 UTC (permalink / raw)
  To: Paul Gortmaker; +Cc: linux-kernel, x86, Fei Yang, H. Peter Anvin

On Wed, Jan 22, 2014 at 12:35:25PM -0500, Paul Gortmaker wrote:
> Commit bc20aa48bbb3068224a1c91f8332971fdb689fad ("x86, intel-mid:
> Add Merrifield platform support")  added new instances of __cpuinit
> usage.  We removed this a couple versions ago; we now want to remove
> the compat no-op stubs.  Introducing new users is not what we want to
> see at this point in time, as it will break once the stubs are gone.
> 
> This also fixes an out of sync __init vs. __cpuinit -- as the former
> is real, and the latter is a no-op; hence it would have been a section
> mismatch.
> 
> Cc: David Cohen <david.a.cohen@linux.intel.com>
> Cc: Fei Yang <fei.yang@intel.com>
> Cc: H. Peter Anvin <hpa@linux.intel.com>
> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>

Thanks for the patch.

Acked-by: David Cohen <david.a.cohen@linux.intel.com>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] x86: don't add new __cpuinit users to Merrifield platform code
  2014-01-22 18:08 ` David Cohen
@ 2014-01-22 18:09   ` David Cohen
  2014-01-22 22:23     ` H. Peter Anvin
  0 siblings, 1 reply; 6+ messages in thread
From: David Cohen @ 2014-01-22 18:09 UTC (permalink / raw)
  To: Paul Gortmaker; +Cc: linux-kernel, x86, Fei Yang, H. Peter Anvin

On Wed, Jan 22, 2014 at 10:08:03AM -0800, David Cohen wrote:
> On Wed, Jan 22, 2014 at 12:35:25PM -0500, Paul Gortmaker wrote:
> > Commit bc20aa48bbb3068224a1c91f8332971fdb689fad ("x86, intel-mid:
> > Add Merrifield platform support")  added new instances of __cpuinit
> > usage.  We removed this a couple versions ago; we now want to remove
> > the compat no-op stubs.  Introducing new users is not what we want to
> > see at this point in time, as it will break once the stubs are gone.
> > 
> > This also fixes an out of sync __init vs. __cpuinit -- as the former
> > is real, and the latter is a no-op; hence it would have been a section
> > mismatch.
> > 
> > Cc: David Cohen <david.a.cohen@linux.intel.com>
> > Cc: Fei Yang <fei.yang@intel.com>
> > Cc: H. Peter Anvin <hpa@linux.intel.com>
> > Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
> 
> Thanks for the patch.
> 
> Acked-by: David Cohen <david.a.cohen@linux.intel.com>

Grr... wrong acked version :)
I'm getting back this ack.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] x86: don't add new __cpuinit users to Merrifield platform code
  2014-01-22 18:09   ` David Cohen
@ 2014-01-22 22:23     ` H. Peter Anvin
  2014-01-22 22:33       ` David Cohen
  0 siblings, 1 reply; 6+ messages in thread
From: H. Peter Anvin @ 2014-01-22 22:23 UTC (permalink / raw)
  To: David Cohen, Paul Gortmaker; +Cc: linux-kernel, x86, Fei Yang, H. Peter Anvin

On 01/22/2014 10:09 AM, David Cohen wrote:
> On Wed, Jan 22, 2014 at 10:08:03AM -0800, David Cohen wrote:
>> On Wed, Jan 22, 2014 at 12:35:25PM -0500, Paul Gortmaker wrote:
>>> Commit bc20aa48bbb3068224a1c91f8332971fdb689fad ("x86, intel-mid:
>>> Add Merrifield platform support")  added new instances of __cpuinit
>>> usage.  We removed this a couple versions ago; we now want to remove
>>> the compat no-op stubs.  Introducing new users is not what we want to
>>> see at this point in time, as it will break once the stubs are gone.
>>>
>>> This also fixes an out of sync __init vs. __cpuinit -- as the former
>>> is real, and the latter is a no-op; hence it would have been a section
>>> mismatch.
>>>
>>> Cc: David Cohen <david.a.cohen@linux.intel.com>
>>> Cc: Fei Yang <fei.yang@intel.com>
>>> Cc: H. Peter Anvin <hpa@linux.intel.com>
>>> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
>>
>> Thanks for the patch.
>>
>> Acked-by: David Cohen <david.a.cohen@linux.intel.com>
> 
> Grr... wrong acked version :)
> I'm getting back this ack.

?!  I don't see any other version?

	-hpa



^ permalink raw reply	[flat|nested] 6+ messages in thread

* [tip:x86/intel-mid] x86: Don' t add new __cpuinit users to Merrifield platform code
  2014-01-22 17:35 [PATCH] x86: don't add new __cpuinit users to Merrifield platform code Paul Gortmaker
  2014-01-22 18:08 ` David Cohen
@ 2014-01-22 22:30 ` tip-bot for Paul Gortmaker
  1 sibling, 0 replies; 6+ messages in thread
From: tip-bot for Paul Gortmaker @ 2014-01-22 22:30 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: linux-kernel, hpa, mingo, fei.yang, david.a.cohen, tglx, hpa,
	paul.gortmaker

Commit-ID:  47683f7fe5d2abd71bf08b42060bcf95e0ad668f
Gitweb:     http://git.kernel.org/tip/47683f7fe5d2abd71bf08b42060bcf95e0ad668f
Author:     Paul Gortmaker <paul.gortmaker@windriver.com>
AuthorDate: Wed, 22 Jan 2014 12:35:25 -0500
Committer:  H. Peter Anvin <hpa@linux.intel.com>
CommitDate: Wed, 22 Jan 2014 14:28:57 -0800

x86: Don't add new __cpuinit users to Merrifield platform code

Commit bc20aa48bbb3068224a1c91f8332971fdb689fad ("x86, intel-mid:
Add Merrifield platform support")  added new instances of __cpuinit
usage.  We removed this a couple versions ago; we now want to remove
the compat no-op stubs.  Introducing new users is not what we want to
see at this point in time, as it will break once the stubs are gone.

This also fixes an out of sync __init vs. __cpuinit -- as the former
is real, and the latter is a no-op; hence it would have been a section
mismatch.

Cc: Fei Yang <fei.yang@intel.com>
Cc: H. Peter Anvin <hpa@linux.intel.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Acked-by: David Cohen <david.a.cohen@linux.intel.com>
Link: http://lkml.kernel.org/r/1390412125-19439-1-git-send-email-paul.gortmaker@windriver.com
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
---
 arch/x86/platform/intel-mid/intel_mid_weak_decls.h | 2 +-
 arch/x86/platform/intel-mid/mrfl.c                 | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/x86/platform/intel-mid/intel_mid_weak_decls.h b/arch/x86/platform/intel-mid/intel_mid_weak_decls.h
index 41fe17d..46aa25c 100644
--- a/arch/x86/platform/intel-mid/intel_mid_weak_decls.h
+++ b/arch/x86/platform/intel-mid/intel_mid_weak_decls.h
@@ -16,4 +16,4 @@
  */
 extern void *get_penwell_ops(void) __attribute__((weak));
 extern void *get_cloverview_ops(void) __attribute__((weak));
-extern void * __init get_tangier_ops(void) __attribute__((weak));
+extern void *get_tangier_ops(void) __attribute__((weak));
diff --git a/arch/x86/platform/intel-mid/mrfl.c b/arch/x86/platform/intel-mid/mrfl.c
index 09d1015..28b636a 100644
--- a/arch/x86/platform/intel-mid/mrfl.c
+++ b/arch/x86/platform/intel-mid/mrfl.c
@@ -97,7 +97,7 @@ static struct intel_mid_ops tangier_ops = {
 	.arch_setup = tangier_arch_setup,
 };
 
-void * __cpuinit get_tangier_ops()
+void *get_tangier_ops()
 {
 	return &tangier_ops;
 }

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] x86: don't add new __cpuinit users to Merrifield platform code
  2014-01-22 22:23     ` H. Peter Anvin
@ 2014-01-22 22:33       ` David Cohen
  0 siblings, 0 replies; 6+ messages in thread
From: David Cohen @ 2014-01-22 22:33 UTC (permalink / raw)
  To: H. Peter Anvin
  Cc: Paul Gortmaker, linux-kernel, x86, Fei Yang, H. Peter Anvin

On Wed, Jan 22, 2014 at 02:23:33PM -0800, H. Peter Anvin wrote:
> On 01/22/2014 10:09 AM, David Cohen wrote:
> > On Wed, Jan 22, 2014 at 10:08:03AM -0800, David Cohen wrote:
> >> On Wed, Jan 22, 2014 at 12:35:25PM -0500, Paul Gortmaker wrote:
> >>> Commit bc20aa48bbb3068224a1c91f8332971fdb689fad ("x86, intel-mid:
> >>> Add Merrifield platform support")  added new instances of __cpuinit
> >>> usage.  We removed this a couple versions ago; we now want to remove
> >>> the compat no-op stubs.  Introducing new users is not what we want to
> >>> see at this point in time, as it will break once the stubs are gone.
> >>>
> >>> This also fixes an out of sync __init vs. __cpuinit -- as the former
> >>> is real, and the latter is a no-op; hence it would have been a section
> >>> mismatch.
> >>>
> >>> Cc: David Cohen <david.a.cohen@linux.intel.com>
> >>> Cc: Fei Yang <fei.yang@intel.com>
> >>> Cc: H. Peter Anvin <hpa@linux.intel.com>
> >>> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
> >>
> >> Thanks for the patch.
> >>
> >> Acked-by: David Cohen <david.a.cohen@linux.intel.com>
> > 
> > Grr... wrong acked version :)
> > I'm getting back this ack.
> 
> ?!  I don't see any other version?

I misread mrfl and mfld. There is another version for mfld only :)

My ack is indeed valid here. Sorry for my misunderstanding.

Br, David

> 
> 	-hpa
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-01-22 22:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-22 17:35 [PATCH] x86: don't add new __cpuinit users to Merrifield platform code Paul Gortmaker
2014-01-22 18:08 ` David Cohen
2014-01-22 18:09   ` David Cohen
2014-01-22 22:23     ` H. Peter Anvin
2014-01-22 22:33       ` David Cohen
2014-01-22 22:30 ` [tip:x86/intel-mid] x86: Don' t " tip-bot for Paul Gortmaker

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).