public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] intel_mid: do not re-introduce usage of obsolete __cpuinit
@ 2013-11-07 18:34 Paul Gortmaker
  2013-11-07 19:30 ` [tip:x86/intel-mid] x86, intel-mid: Do " tip-bot for Paul Gortmaker
  2013-11-07 19:42 ` [PATCH] intel_mid: do " David Cohen
  0 siblings, 2 replies; 3+ messages in thread
From: Paul Gortmaker @ 2013-11-07 18:34 UTC (permalink / raw)
  To: x86
  Cc: linux-kernel, Paul Gortmaker, Kuppuswamy Sathyanarayanan,
	David Cohen, H. Peter Anvin

The commit 712b6aa8731a7e148298c58cea66a5209c659e3c [Nov7 linux-next
via tip/auto-latest] ("intel_mid: Renamed *mrst* to *intel_mid*")
adds a __cpuinit.

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.

Cc: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
Cc: David Cohen <david.a.cohen@linux.intel.com>
Cc: H. Peter Anvin <hpa@linux.intel.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
---

[Feel free to squash this into the original, if there happens
 to be a rebase taking place anyway...]

 arch/x86/platform/intel-mid/intel-mid.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/platform/intel-mid/intel-mid.c b/arch/x86/platform/intel-mid/intel-mid.c
index 523a1c8..f90e290 100644
--- a/arch/x86/platform/intel-mid/intel-mid.c
+++ b/arch/x86/platform/intel-mid/intel-mid.c
@@ -123,7 +123,7 @@ static void __init intel_mid_time_init(void)
 	apbt_time_init();
 }
 
-static void __cpuinit intel_mid_arch_setup(void)
+static void intel_mid_arch_setup(void)
 {
 	if (boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model == 0x27)
 		__intel_mid_cpu_chip = INTEL_MID_CPU_CHIP_PENWELL;
-- 
1.8.4.1


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

* [tip:x86/intel-mid] x86, intel-mid: Do not re-introduce usage of obsolete __cpuinit
  2013-11-07 18:34 [PATCH] intel_mid: do not re-introduce usage of obsolete __cpuinit Paul Gortmaker
@ 2013-11-07 19:30 ` tip-bot for Paul Gortmaker
  2013-11-07 19:42 ` [PATCH] intel_mid: do " David Cohen
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Paul Gortmaker @ 2013-11-07 19:30 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: linux-kernel, hpa, mingo, david.a.cohen,
	sathyanarayanan.kuppuswamy, tglx, hpa, paul.gortmaker

Commit-ID:  aeeca404266c8ed2997905afc342ba9561f49ca7
Gitweb:     http://git.kernel.org/tip/aeeca404266c8ed2997905afc342ba9561f49ca7
Author:     Paul Gortmaker <paul.gortmaker@windriver.com>
AuthorDate: Thu, 7 Nov 2013 13:34:50 -0500
Committer:  H. Peter Anvin <hpa@zytor.com>
CommitDate: Thu, 7 Nov 2013 10:44:03 -0800

x86, intel-mid: Do not re-introduce usage of obsolete __cpuinit

The commit 712b6aa8731a7e148298c58cea66a5209c659e3c [Nov7 linux-next
via tip/auto-latest] ("intel_mid: Renamed *mrst* to *intel_mid*")
adds a __cpuinit.

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.

Cc: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
Cc: David Cohen <david.a.cohen@linux.intel.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Link: http://lkml.kernel.org/r/1383849290-11250-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.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/platform/intel-mid/intel-mid.c b/arch/x86/platform/intel-mid/intel-mid.c
index 523a1c8..f90e290 100644
--- a/arch/x86/platform/intel-mid/intel-mid.c
+++ b/arch/x86/platform/intel-mid/intel-mid.c
@@ -123,7 +123,7 @@ static void __init intel_mid_time_init(void)
 	apbt_time_init();
 }
 
-static void __cpuinit intel_mid_arch_setup(void)
+static void intel_mid_arch_setup(void)
 {
 	if (boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model == 0x27)
 		__intel_mid_cpu_chip = INTEL_MID_CPU_CHIP_PENWELL;

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

* Re: [PATCH] intel_mid: do not re-introduce usage of obsolete __cpuinit
  2013-11-07 18:34 [PATCH] intel_mid: do not re-introduce usage of obsolete __cpuinit Paul Gortmaker
  2013-11-07 19:30 ` [tip:x86/intel-mid] x86, intel-mid: Do " tip-bot for Paul Gortmaker
@ 2013-11-07 19:42 ` David Cohen
  1 sibling, 0 replies; 3+ messages in thread
From: David Cohen @ 2013-11-07 19:42 UTC (permalink / raw)
  To: Paul Gortmaker
  Cc: x86, linux-kernel, Kuppuswamy Sathyanarayanan, H. Peter Anvin

On 11/07/2013 10:34 AM, Paul Gortmaker wrote:
> The commit 712b6aa8731a7e148298c58cea66a5209c659e3c [Nov7 linux-next
> via tip/auto-latest] ("intel_mid: Renamed *mrst* to *intel_mid*")
> adds a __cpuinit.
>
> 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.
>
> Cc: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
> Cc: David Cohen <david.a.cohen@linux.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>

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

end of thread, other threads:[~2013-11-07 19:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-07 18:34 [PATCH] intel_mid: do not re-introduce usage of obsolete __cpuinit Paul Gortmaker
2013-11-07 19:30 ` [tip:x86/intel-mid] x86, intel-mid: Do " tip-bot for Paul Gortmaker
2013-11-07 19:42 ` [PATCH] intel_mid: do " David Cohen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox