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>
20 lines
649 B
C
20 lines
649 B
C
/*
|
|
* intel_mid_weak_decls.h: Weak declarations of intel-mid.c
|
|
*
|
|
* (C) Copyright 2013 Intel Corporation
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; version 2
|
|
* of the License.
|
|
*/
|
|
|
|
|
|
/* __attribute__((weak)) makes these declarations overridable */
|
|
/* For every CPU addition a new get_<cpuname>_ops interface needs
|
|
* to be added.
|
|
*/
|
|
extern void *get_penwell_ops(void) __attribute__((weak));
|
|
extern void *get_cloverview_ops(void) __attribute__((weak));
|
|
extern void *get_tangier_ops(void) __attribute__((weak));
|