mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-01 18:24:23 +08:00
cbe48bc8cd
Commit 85611e3feb
("x86, intel-mid:
Add Clovertrail 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.
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Cc: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
Cc: Fei Yang <fei.yang@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/1390412055-19341-1-git-send-email-paul.gortmaker@windriver.com
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
20 lines
657 B
C
20 lines
657 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 * __init get_tangier_ops(void) __attribute__((weak));
|